:root {
    --primary-color: #fdb71c;
    --text-dark: #4b4b4b;
    --text-light: #706f6c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background-color: #FDFDFC;
    min-height: 100vh;
    padding-top: 80px;
}

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand img {
    height: 40px;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-login {
    background-color: #2ead7f;
    color: #fff;
    border: 0px;
    padding: 10px 24px;
}

.btn-login:hover {
    background-color: #259d72;
    color: #fff;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.btn-signup {
    background-color: var(--primary-color);
    color: #4b4b4b;
    border: none;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.btn-signup:hover {
    background-color: #e5a50f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(253, 183, 28, 0.3);
}

.hero-section .btn-signup {
    background-color: #306c8b;
    color: #fff;
}

.hero-section .btn-signup:hover {
    background-color: #255a75;
    box-shadow: 0 4px 12px rgba(48, 108, 139, 0.3);
}

.hero-section .btn-signup {
    font-size: 0.9rem;
}

/* Dashboard Styles */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dashboard-main {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2rem;
}

@media (max-width: 992px) {
    .dashboard-main {
        grid-template-columns: 1fr;
    }
}

.dashboard-card {
    background-color: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 0.5rem;
    padding: 2rem;
    box-shadow: inset 0px 0px 0px 1px rgba(26, 26, 0, 0.16);
}

.connection-card {
    background-color: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.rippling-connect-btn {
    background-color: #fdb71c !important;
    color: #4b4b4b !important;
    border: none !important;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.rippling-connect-btn:hover {
    background-color: #e5a516 !important;
    color: #4b4b4b !important;
}

.rippling-connect-btn:active {
    background-color: #cc9313 !important;
    color: #4b4b4b !important;
}

.rippling-connect-btn:focus {
    outline: 2px solid #fdb71c !important;
    outline-offset: 2px !important;
    box-shadow: 0 0 0 0.25rem rgba(253, 183, 28, 0.25) !important;
}

.dashboard-card h1 {
    color: var(--text-dark);
}

.dashboard-card p {
    color: var(--text-light);
}

.connection-card h2 {
    color: var(--text-dark);
}

.connection-card p {
    color: var(--text-light);
}

/* Info Card Styles */
.info-card {
    background-color: #ffffff;
    border: 1px solid #e3e3e0;
    border-radius: 0.5rem;
    padding: 1.5rem;
    box-shadow: inset 0px 0px 0px 1px rgba(26, 26, 0, 0.16);
    height: fit-content;
}

.info-card h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.info-section {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e3e3e0;
}

.info-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.info-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 0.875rem;
    color: var(--text-dark);
    font-weight: 500;
}

.subscription-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.subscription-badge.free {
    background-color: #e9ecef;
    color: #495057;
}

.subscription-badge.business {
    background-color: #d1ecf1;
    color: #0c5460;
}

.subscription-badge.enterprise {
    background-color: #d4edda;
    color: #155724;
}

.btn-upgrade {
    width: 100%;
    background-color: var(--primary-color);
    color: #000;
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s;
}

.btn-upgrade:hover {
    background-color: #e5a516;
    color: #000;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

/* Save Channel Button */
#save-channel-btn {
    background-color: #306c8b !important;
    border-color: #306c8b !important;
    color: #fff !important;
}

#save-channel-btn:hover:not(:disabled) {
    background-color: #255a75 !important;
    border-color: #255a75 !important;
    color: #fff !important;
}

#save-channel-btn:focus {
    background-color: #306c8b !important;
    border-color: #306c8b !important;
    box-shadow: 0 0 0 0.25rem rgba(48, 108, 139, 0.25) !important;
}

