.tab-button {
    padding: 0.75rem 1.5rem;
    border-bottom: 2px solid transparent;
    color: #9ca3af;
    font-weight: 500;
    transition: all 0.3s;
}

.tab-button.active {
    color: #3ea6ff;
    border-bottom-color: #3ea6ff;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-badge.connected {
    background-color: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status-badge.disconnected {
    background-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}