/* =============================================
   STUDIO-CLIENTS.CSS
   ============================================= */

.cs-studio-clients {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 20px;
}

.cs-client-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.cs-client-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 14px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.cs-client-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 175, 55, 0.1);
    transform: translateX(4px);
}

.cs-client-avatar {
    position: relative;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(212, 175, 55, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cs-client-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cs-client-initials {
    font-size: 0.8rem;
    font-weight: 600;
    color: #D4AF37;
}

.cs-client-status {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid #0A0A0A;
}

.cs-client-status.active {
    background: #00E676;
}

.cs-client-status.pending {
    background: #FFA726;
}

.cs-client-status.inactive {
    background: #757575;
}

.cs-client-info {
    flex: 1;
    min-width: 0;
}

.cs-client-name {
    font-weight: 500;
    font-size: 0.95rem;
}

.cs-client-project {
    font-size: 0.8rem;
    opacity: 0.5;
}

.cs-client-actions {
    display: flex;
    gap: 6px;
}

.cs-client-actions button {
    padding: 4px 10px;
    font-size: 0.8rem;
}

@media (max-width: 768px) {
    .cs-client-actions {
        flex-direction: column;
    }
}