/* ===== Dashboard Premium Styles ===== */
/* Extends the main site's glassmorphism design system */

/* ===== Auth UI Elements ===== */

/* Login Button in Navbar */
.nav-login-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.3), rgba(168, 85, 247, 0.3));
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #e2e8f0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    white-space: nowrap;
}

.nav-login-btn:hover {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.5), rgba(168, 85, 247, 0.5));
    border-color: rgba(168, 85, 247, 0.7);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.3);
}

.nav-login-btn i {
    font-size: 1rem;
}

/* User Avatar */
.user-avatar-container {
    position: relative;
    display: none;
    cursor: pointer;
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid rgba(168, 85, 247, 0.5);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #4f46e5, #a855f7);
    transition: all 0.3s ease;
}

.user-avatar:hover {
    border-color: rgba(168, 85, 247, 0.9);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.4);
    transform: scale(1.05);
}

.user-avatar .avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.user-avatar .avatar-fallback {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'DM Sans', sans-serif;
}

/* User Dropdown Menu */
.user-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    width: 240px;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 16px;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 1000;
}

.user-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-header {
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 8px;
}

.dropdown-header .user-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0;
}

.dropdown-header .user-email {
    font-size: 0.75rem;
    color: #94a3b8;
    margin: 4px 0 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: #cbd5e1;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: none;
    width: 100%;
    font-family: 'DM Sans', sans-serif;
}

.dropdown-item:hover {
    background: rgba(168, 85, 247, 0.15);
    color: #e2e8f0;
}

.dropdown-item i {
    width: 18px;
    text-align: center;
    font-size: 0.9rem;
    color: #a855f7;
}

.dropdown-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 6px 0;
}

.dropdown-item.danger {
    color: #f87171;
}

.dropdown-item.danger i {
    color: #f87171;
}

.dropdown-item.danger:hover {
    background: rgba(248, 113, 113, 0.15);
}

/* Auth Toast Notifications */
.auth-toast {
    position: fixed;
    top: 80px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 14px;
    background: rgba(15, 15, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(168, 85, 247, 0.3);
    color: #e2e8f0;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    z-index: 10000;
    transform: translateX(calc(100% + 40px));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    max-width: 400px;
}

.auth-toast.show {
    transform: translateX(0);
}

.auth-toast-success {
    border-color: rgba(52, 211, 153, 0.4);
}

.auth-toast-error {
    border-color: rgba(248, 113, 113, 0.4);
}

.toast-icon {
    font-size: 1.2rem;
}

.toast-message {
    flex: 1;
}

/* ===== Dashboard Page ===== */

.dashboard-hero {
    padding: 120px 0 40px;
    position: relative;
}

.dashboard-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    flex-wrap: wrap;
    gap: 20px;
}

.dashboard-welcome {
    display: flex;
    align-items: center;
    gap: 20px;
}

.dashboard-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid rgba(168, 85, 247, 0.5);
    overflow: hidden;
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.3);
}

.dashboard-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.welcome-text h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #e2e8f0;
    margin: 0;
}

.welcome-text h1 .gradient-text {
    background: linear-gradient(135deg, #a855f7, #6366f1, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.welcome-text p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 4px 0 0;
}

.dashboard-status {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 20px;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 50px;
    font-size: 0.85rem;
    color: #34d399;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 10px rgba(52, 211, 153, 0.1);
    }

    50% {
        box-shadow: 0 0 20px rgba(52, 211, 153, 0.2);
    }
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34d399;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

/* ===== Quick Stats ===== */
.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 2rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(168, 85, 247, 0.1);
}

.stat-card .stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.stat-card .stat-icon.purple {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.stat-card .stat-icon.blue {
    background: rgba(99, 102, 241, 0.15);
    color: #818cf8;
}

.stat-card .stat-icon.green {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
}

.stat-card .stat-icon.amber {
    background: rgba(251, 191, 36, 0.15);
    color: #fbbf24;
}

.stat-card .stat-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: #e2e8f0;
    font-family: 'DM Sans', sans-serif;
}

.stat-card .stat-label {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 2px;
}

/* ===== Workflow Section ===== */
.workflows-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 2rem 60px;
}

.workflows-section .section-title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 16px;
}

.workflows-section .section-title-row h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #e2e8f0;
}

.workflow-filter-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.workflow-pill {
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
    color: #94a3b8;
    font-size: 0.8rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.workflow-pill.active,
.workflow-pill:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: rgba(168, 85, 247, 0.4);
    color: #e2e8f0;
}

/* ===== Workflow Cards Grid ===== */
.workflow-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 24px;
}

.workflow-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.workflow-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--card-accent, #a855f7), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.workflow-card:hover {
    border-color: rgba(168, 85, 247, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(168, 85, 247, 0.08);
}

.workflow-card:hover::before {
    opacity: 1;
}

.workflow-card.twitter {
    --card-accent: #1DA1F2;
}

.workflow-card.whatsapp {
    --card-accent: #25D366;
}

.workflow-card.linkedin {
    --card-accent: #0A66C2;
}

.workflow-card.email {
    --card-accent: #EA4335;
}

.workflow-card.github {
    --card-accent: #f0f6fc;
}

.workflow-card.slack {
    --card-accent: #4A154B;
}

.workflow-card.notion-card {
    --card-accent: #ffffff;
}

.workflow-card.custom {
    --card-accent: #a855f7;
}

.card-top {
    padding: 24px 24px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.card-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.brand-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}

.workflow-card:hover .brand-icon {
    transform: scale(1.08);
}

.brand-icon.twitter-icon {
    background: rgba(29, 161, 242, 0.15);
    color: #1DA1F2;
}

.brand-icon.whatsapp-icon {
    background: rgba(37, 211, 102, 0.15);
    color: #25D366;
}

.brand-icon.linkedin-icon {
    background: rgba(10, 102, 194, 0.15);
    color: #0A66C2;
}

.brand-icon.email-icon {
    background: rgba(234, 67, 53, 0.15);
    color: #EA4335;
}

.brand-icon.github-icon {
    background: rgba(240, 246, 252, 0.1);
    color: #f0f6fc;
}

.brand-icon.slack-icon {
    background: rgba(74, 21, 75, 0.2);
    color: #E01E5A;
}

.brand-icon.notion-icon {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
}

.brand-icon.custom-icon {
    background: rgba(168, 85, 247, 0.15);
    color: #a855f7;
}

.card-brand h3 {
    font-size: 1.1rem;
    color: #e2e8f0;
    margin: 0;
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
}

.card-brand .brand-type {
    font-size: 0.75rem;
    color: #64748b;
    margin-top: 2px;
}

.card-status-badge {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-status-badge.connected {
    background: rgba(52, 211, 153, 0.15);
    color: #34d399;
    border: 1px solid rgba(52, 211, 153, 0.3);
}

.card-status-badge.available {
    background: rgba(251, 191, 36, 0.1);
    color: #fbbf24;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.card-status-badge.coming-soon {
    background: rgba(100, 116, 139, 0.1);
    color: #64748b;
    border: 1px solid rgba(100, 116, 139, 0.2);
}

.card-body {
    padding: 16px 24px;
}

.card-body p {
    font-size: 0.88rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.card-features {
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
}

.feature-tag {
    padding: 4px 10px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.72rem;
    color: #94a3b8;
}

.card-actions {
    padding: 16px 24px 24px;
    display: flex;
    gap: 10px;
}

.card-btn {
    flex: 1;
    padding: 10px 16px;
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border: none;
}

.card-btn-primary {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.3), rgba(99, 102, 241, 0.3));
    border: 1px solid rgba(168, 85, 247, 0.4);
    color: #e2e8f0;
}

.card-btn-primary:hover {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.5), rgba(99, 102, 241, 0.5));
    transform: translateY(-1px);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.2);
}

.card-btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

.card-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
}

.card-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none !important;
}

/* ===== Activity Log ===== */
.activity-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 80px;
}

.activity-section h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    color: #e2e8f0;
    margin-bottom: 24px;
}

.activity-feed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.activity-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    transition: all 0.3s ease;
}

.activity-item:hover {
    border-color: rgba(168, 85, 247, 0.15);
    background: rgba(255, 255, 255, 0.04);
}

.activity-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
    background: rgba(168, 85, 247, 0.1);
    color: #a855f7;
}

.activity-content {
    flex: 1;
}

.activity-content strong {
    color: #e2e8f0;
}

.activity-content p {
    margin: 0;
    font-size: 0.85rem;
    color: #94a3b8;
}

.activity-time {
    font-size: 0.75rem;
    color: #475569;
    white-space: nowrap;
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #64748b;
}

.empty-state i {
    font-size: 3rem;
    margin-bottom: 16px;
    opacity: 0.3;
}

.empty-state h3 {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 8px;
}

.empty-state p {
    font-size: 0.9rem;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .quick-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .dashboard-welcome {
        gap: 14px;
    }

    .welcome-text h1 {
        font-size: 1.5rem;
    }

    .dashboard-avatar {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .quick-stats {
        grid-template-columns: 1fr;
    }

    .card-actions {
        flex-direction: column;
    }

    .workflow-filter-pills {
        overflow-x: auto;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }
}

/* ===== Agent Console Modal ===== */
.agent-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.agent-modal.active {
    display: flex;
    opacity: 1;
}

.agent-console {
    width: 100%;
    max-width: 900px;
    height: 80vh;
    background: #0f172a;
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5), 0 0 40px rgba(168, 85, 247, 0.1);
    transform: scale(0.95);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.agent-modal.active .agent-console {
    transform: scale(1);
}

.console-header {
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.console-title {
    display: flex;
    align-items: center;
    gap: 12px;
}

.console-title i {
    color: #a855f7;
    font-size: 1.2rem;
}

.console-title h3 {
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    color: #e2e8f0;
    margin: 0;
}

.console-close {
    background: none;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.console-close:hover {
    color: #f87171;
}

.console-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Console Terminal Log */
.console-log {
    background: #020617;
    border-radius: 12px;
    padding: 16px;
    font-family: 'Courier New', Courier, monospace;
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.6;
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 150px;
    overflow-y: auto;
}

.log-entry {
    margin-bottom: 4px;
}

.log-entry.info {
    color: #818cf8;
}

.log-entry.success {
    color: #34d399;
}

.log-entry.warning {
    color: #fbbf24;
}

.log-entry.error {
    color: #f87171;
}

.log-entry.command {
    color: #e2e8f0;
}

/* Trend List */
.trend-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 16px;
}

.trend-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.trend-item:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.3);
    transform: translateY(-2px);
}

.trend-item.selected {
    background: rgba(168, 85, 247, 0.2);
    border-color: #a855f7;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.trend-num {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 700;
    margin-bottom: 4px;
}

.trend-headline {
    font-size: 0.95rem;
    font-weight: 600;
    color: #e2e8f0;
    margin-bottom: 8px;
    line-height: 1.4;
}

.trend-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Agent Results */
.agent-results {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 20px;
}

.draft-container {
    margin-top: 16px;
}

.draft-textarea {
    width: 100%;
    background: #020617;
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 12px;
    padding: 16px;
    color: #e2e8f0;
    font-family: 'DM Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.5;
    resize: none;
    min-height: 120px;
    margin-bottom: 16px;
}

.draft-textarea:focus {
    outline: none;
    border-color: #a855f7;
    box-shadow: 0 0 15px rgba(168, 85, 247, 0.2);
}

.console-footer {
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.loading-spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 640px) {
    .agent-console {
        height: 90vh;
    }

    .trend-list {
        grid-template-columns: 1fr;
    }
}

/* Trend Location Badges */
.loc-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.loc-badge.india {
    background: rgba(255, 153, 51, 0.1);
    color: #ff9933;
    border: 1px solid rgba(255, 153, 51, 0.3);
}

.loc-badge.global {
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(59, 130, 246, 0.3);
}