/* =====================================================
   TIJARS.ID - Home Page Specific Styles
   ===================================================== */

/* Nav Actions */
.nav-actions {
    display: flex;
    gap: var(--space-sm);
}

.btn-sm {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-sm);
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #F0F9FA 0%, #E8F4F5 50%, #F5FAF0 100%);
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.4;
    background-image: radial-gradient(circle at 1px 1px, rgba(30, 124, 138, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-3xl);
    align-items: center;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(30, 124, 138, 0.1);
    border: 1px solid rgba(30, 124, 138, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--primary-teal);
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success-green);
    border-radius: var(--radius-full);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--primary-dark);
    margin-bottom: var(--space-lg);
}

.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: var(--font-size-lg);
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 540px;
}

.hero-cta {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.btn-lg {
    padding: var(--space-md) var(--space-xl);
    font-size: var(--font-size-base);
}

.btn-ghost {
    background: transparent;
    color: var(--primary-teal);
}

.btn-ghost:hover {
    background: rgba(30, 124, 138, 0.1);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary-teal);
}

.stat-label {
    font-size: var(--font-size-xs);
    color: var(--dark-gray);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--medium-gray);
}

/* Hero Visual Card */
.hero-visual {
    position: relative;
}

.hero-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-sm) var(--space-md);
    background: var(--light-gray);
}

.card-badge {
    font-size: var(--font-size-xs);
    font-weight: 600;
    color: var(--primary-teal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-status {
    font-size: var(--font-size-xs);
}

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: var(--space-lg);
}

.card-title {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--space-xs);
}

.card-location {
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
    margin-bottom: var(--space-md);
}

.card-metrics {
    display: flex;
    gap: var(--space-lg);
    margin-bottom: var(--space-md);
}

.card-metrics .metric {
    text-align: center;
}

.card-metrics .metric-value {
    display: block;
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-teal);
}

.card-metrics .metric-label {
    font-size: var(--font-size-xs);
    color: var(--dark-gray);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* =====================================================
   SECTIONS BASE
   ===================================================== */
.section {
    padding: var(--space-3xl) 0;
}

.section-light {
    background: var(--light-gray);
}

.section-dark {
    background: var(--gradient-dark);
}

.section-gradient {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-teal) 100%);
}

.section-header {
    margin-bottom: var(--space-2xl);
}

.section-header.center {
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header:not(.center) {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.section-badge {
    display: inline-block;
    padding: var(--space-xs) var(--space-md);
    background: rgba(30, 124, 138, 0.1);
    color: var(--primary-teal);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-md);
}

.section-badge.light {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: var(--space-md);
}

.section-title.light {
    color: var(--white);
}

.section-subtitle {
    font-size: var(--font-size-lg);
    color: var(--dark-gray);
    line-height: 1.7;
}

.container-narrow {
    max-width: 800px;
}

/* =====================================================
   RWA SECTION
   ===================================================== */
.rwa-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.rwa-card {
    padding: var(--space-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    text-align: center;
}

.rwa-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.rwa-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.rwa-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
}

.rwa-card p {
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
    line-height: 1.6;
}

/* =====================================================
   PROCESS TIMELINE
   ===================================================== */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 32px;
    left: calc(12.5% + 16px);
    right: calc(12.5% + 16px);
    height: 2px;
    background: var(--medium-gray);
    z-index: 0;
}

.process-step {
    position: relative;
    z-index: 1;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--gradient-primary);
    color: var(--white);
    font-size: var(--font-size-2xl);
    font-weight: 700;
    border-radius: var(--radius-full);
    margin: 0 auto var(--space-lg);
    box-shadow: var(--shadow-lg);
}

.step-content {
    text-align: center;
}

.step-content h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-sm);
}

.step-content p {
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
    line-height: 1.6;
    margin-bottom: var(--space-md);
}

.step-features {
    text-align: left;
    padding-left: var(--space-lg);
}

.step-features li {
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
    margin-bottom: var(--space-xs);
    position: relative;
}

.step-features li::before {
    content: '✓';
    position: absolute;
    left: -20px;
    color: var(--success-green);
    font-weight: 700;
}

/* =====================================================
   BENEFITS SECTION
   ===================================================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.benefit-card {
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.benefit-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.benefit-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.benefit-card h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-sm);
}

.benefit-card p {
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* =====================================================
   TOKENOMICS SECTION
   ===================================================== */
.tokenomics-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.token-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.token-feature {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    color: var(--primary-teal);
    flex-shrink: 0;
}

.token-feature h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-xs);
}

.token-feature p {
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
}

/* Donut Chart */
.chart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.donut-chart {
    position: relative;
    width: 250px;
    height: 250px;
}

.donut-chart svg {
    width: 100%;
    height: 100%;
}

.chart-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.chart-total {
    font-size: var(--font-size-3xl);
    font-weight: 800;
    color: var(--primary-dark);
}

.chart-label {
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: var(--radius-sm);
}

.legend-label {
    flex: 1;
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
}

.legend-value {
    font-size: var(--font-size-sm);
    font-weight: 600;
    color: var(--primary-dark);
}

/* =====================================================
   MARKET SECTION
   ===================================================== */
.market-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-2xl);
}

.market-stat {
    text-align: center;
    padding: var(--space-xl);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
}

.market-value {
    font-size: var(--font-size-4xl);
    font-weight: 800;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.market-label {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xs);
}

.market-growth {
    font-size: var(--font-size-sm);
    color: var(--success-green);
}

.market-drivers {
    text-align: center;
}

.market-drivers h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-lg);
}

.drivers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
}

.driver-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
}

.driver-icon {
    font-size: var(--font-size-2xl);
}

/* =====================================================
   INVESTMENTS GRID
   ===================================================== */
.investments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.investment-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
}

.investment-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.card-image-wrapper {
    position: relative;
}

.card-image-wrapper img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-image-wrapper .card-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    font-weight: 600;
}

.card-badge.available {
    background: var(--success-green);
    color: var(--white);
}

.card-badge.coming-soon {
    background: var(--warning-orange);
    color: var(--white);
}

.card-body {
    padding: var(--space-lg);
}

.card-stats {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-md);
}

.card-stats .stat {
    text-align: center;
}

.card-stats .stat-label {
    display: block;
    font-size: var(--font-size-xs);
    color: var(--dark-gray);
    margin-bottom: var(--space-xs);
}

.card-stats .stat-value {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-teal);
}

.card-progress {
    margin-bottom: var(--space-md);
}

.card-progress .progress-bar {
    height: 6px;
    background: var(--light-gray);
    border-radius: var(--radius-full);
    overflow: hidden;
    margin-bottom: var(--space-xs);
}

.card-progress .progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
}

.card-progress .progress-text {
    font-size: var(--font-size-xs);
    color: var(--dark-gray);
}

/* =====================================================
   SECURITY SECTION
   ===================================================== */
.security-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-3xl);
    align-items: center;
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.security-item {
    display: flex;
    gap: var(--space-md);
    align-items: flex-start;
}

.security-item svg {
    flex-shrink: 0;
    color: var(--primary-teal);
}

.security-item h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: var(--space-xs);
}

.security-item p {
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
}

.security-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.badge-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
}

.badge-card .badge-icon {
    padding: var(--space-md) var(--space-lg);
    background: var(--gradient-primary);
    color: var(--white);
    font-size: var(--font-size-lg);
    font-weight: 700;
    border-radius: var(--radius-md);
}

.badge-card span {
    font-size: var(--font-size-sm);
    color: var(--dark-gray);
}

/* =====================================================
   FAQ SECTION
   ===================================================== */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    border: 1px solid transparent;
    transition: all var(--transition-base);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(30, 124, 138, 0.2);
}

.faq-item.active {
    border-color: var(--primary-teal);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: var(--space-lg) var(--space-xl);
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--primary-dark);
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    color: var(--primary-teal);
    background: rgba(30, 124, 138, 0.05);
}

.faq-question:focus {
    outline: none;
    background: rgba(30, 124, 138, 0.05);
}

.faq-question svg {
    flex-shrink: 0;
    color: var(--primary-teal);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question {
    color: var(--primary-teal);
    background: rgba(30, 124, 138, 0.05);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 var(--space-xl) var(--space-lg);
    color: var(--dark-gray);
    line-height: 1.7;
    border-top: 1px solid var(--light-gray);
    padding-top: var(--space-md);
    margin: 0 var(--space-md);
}

/* =====================================================
   CTA SECTION
   ===================================================== */
.section-cta {
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.cta-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-subtitle {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-xl);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
}

.btn-white {
    background: var(--white);
    color: var(--primary-teal);
}

.btn-white:hover {
    background: var(--light-gray);
}

.btn-ghost-white {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.btn-ghost-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--white);
}

/* =====================================================
   RESPONSIVE DESIGN
   ===================================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .rwa-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-timeline::before {
        display: none;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tokenomics-layout {
        grid-template-columns: 1fr;
    }

    .market-stats {
        grid-template-columns: 1fr;
    }

    .drivers-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .investments-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .security-layout {
        grid-template-columns: 1fr;
    }

    .security-badges {
        margin-top: var(--space-xl);
    }
}

@media (max-width: 768px) {
    .nav-actions {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--space-md);
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .rwa-grid,
    .process-timeline,
    .benefits-grid,
    .drivers-grid,
    .investments-grid {
        grid-template-columns: 1fr;
    }

    .security-badges {
        grid-template-columns: 1fr;
    }

    .hero-cta,
    .cta-buttons {
        flex-direction: column;
    }

    .section-header:not(.center) {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }
}

/* =====================================================
   WALLET CONNECTED STYLES
   ===================================================== */
.wallet-connected {
    position: relative;
}

.btn-wallet {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(30, 124, 138, 0.1) 0%, rgba(164, 214, 94, 0.1) 100%);
    border: 2px solid rgba(30, 124, 138, 0.3);
    border-radius: 12px;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-wallet:hover {
    background: linear-gradient(135deg, rgba(30, 124, 138, 0.15) 0%, rgba(164, 214, 94, 0.15) 100%);
    border-color: var(--primary-teal);
}

.btn-wallet svg:first-child {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.wallet-address {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.8rem;
}

.wallet-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 0.5rem;
    min-width: 280px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 100;
    overflow: hidden;
}

.wallet-dropdown.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.wallet-dropdown-header {
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, var(--primary-teal) 0%, #0D4A52 100%);
    color: white;
}

.wallet-type {
    display: block;
    font-size: 0.75rem;
    opacity: 0.8;
    margin-bottom: 0.25rem;
}

.wallet-full-address {
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.85rem;
    font-weight: 500;
}

.wallet-dropdown-actions {
    padding: 0.5rem;
}

.dropdown-action {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    background: transparent;
    color: var(--primary-dark);
    font-size: 0.9rem;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.15s ease;
}

.dropdown-action:hover {
    background: var(--light-gray);
}

.dropdown-action svg {
    color: var(--dark-gray);
}

.dropdown-action.disconnect {
    color: #ef4444;
}

.dropdown-action.disconnect svg {
    color: #ef4444;
}

.dropdown-action.disconnect:hover {
    background: #fef2f2;
}

/* Toast Notification */
.toast-notification {
    position: fixed;
    top: 1.5rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: #1a2a4a;
    color: white;
    border-radius: 10px;
    font-size: 0.9rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateX(120%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification.success {
    background: #22c55e;
}

.toast-notification.error {
    background: #ef4444;
}