.users-container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    color: #ddd;
}

.user-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(30, 30, 36, 0.8);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    border: 1px solid #333;
    transition: background 0.2s;
}

.user-row:hover {
    background: rgba(40, 40, 48, 0.9);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #fff;
}

.user-name {
    font-size: 1.1em;
    font-weight: 500;
    color: #fff;
}

.btn-profile {
    background: #00bcd4;
    color: #fff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.9em;
    transition: background 0.2s;
}

.btn-profile:hover {
    background: #00acc1;
}