body {
    background-color: #f5f5f5;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.client-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 15px;
    background-color: white;
    transition: all 0.3s ease;
}

.client-card:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.client-card.streaming {
    border-left: 4px solid #0d6efd;
}

.client-card.disconnected {
    opacity: 0.6;
    border-left: 4px solid #dc3545;
}

.status-badge {
    font-size: 0.85rem;
    padding: 5px 10px;
}

.log-entry {
    padding: 8px;
    margin-bottom: 5px;
    border-left: 3px solid #0d6efd;
    background-color: #f8f9fa;
    font-size: 0.9rem;
}

.log-entry.success {
    border-left-color: #198754;
}

.log-entry.error {
    border-left-color: #dc3545;
}

.log-entry.warning {
    border-left-color: #ffc107;
}

.log-timestamp {
    color: #6c757d;
    font-size: 0.8rem;
    margin-right: 10px;
}

.btn-connect {
    min-width: 100px;
}

#connectionStatus {
    font-size: 0.9rem;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-details {
    flex: 1;
}

.client-actions {
    display: flex;
    gap: 10px;
}

@media (max-width: 768px) {
    .client-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .client-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-connect {
        width: 100%;
    }
}
