/* Custom styles for JobSnap AI */

:root {
    --primary-color: #0d6efd;
    --secondary-color: #6c757d;
    --success-color: #198754;
    --danger-color: #dc3545;
    --warning-color: #ffc107;
    --info-color: #0dcaf0;

    /* Classic theme token definitions */
    --theme-primary: #1f6feb;
    --theme-primary-dark: #174ea6;
    --theme-secondary: #2e86c1;
    --theme-secondary-dark: #1f5b86;
    --theme-footer: #16354a;
    --theme-footer-dark: #0f2534;
    --theme-contrast: #ffffff;

    /* Active vars use direct values — avoids cross-element var() chain resolution quirks */
    --theme-primary-active: #1f6feb;
    --theme-secondary-active: #2e86c1;
    --theme-footer-active: #16354a;
    --surface-muted: #f8f9fa;
    --surface-card: #ffffff;
    --body-text: #1c1c1c;
}

/* ── Classic (default) — override Bootstrap's default blue on body ── */
body {
    --bs-primary: #1f6feb;
    --bs-primary-rgb: 31, 111, 235;
    --bs-link-color: #1f6feb;
    --bs-link-hover-color: #174ea6;
}

/* ── Forest Green ── */
body[data-theme='forest'] {
    --theme-primary: #1f7a4f;
    --theme-primary-dark: #18593b;
    --theme-secondary: #2f9e72;
    --theme-secondary-dark: #1f7452;
    --theme-footer: #174032;
    --theme-footer-dark: #102f24;
    /* Active vars — set directly so no cross-element var() chain is needed */
    --theme-primary-active: #1f7a4f;
    --theme-secondary-active: #2f9e72;
    --theme-footer-active: #174032;
    /* Bootstrap component overrides (badges, links, focus rings, form borders, etc.) */
    --bs-primary: #1f7a4f;
    --bs-primary-rgb: 31, 122, 79;
    --bs-link-color: #1f7a4f;
    --bs-link-hover-color: #18593b;
}

/* ── Sunset Orange ── */
body[data-theme='sunset'] {
    --theme-primary: #c25a2b;
    --theme-primary-dark: #96431f;
    --theme-secondary: #db7d4b;
    --theme-secondary-dark: #b15e31;
    --theme-footer: #5b2d1b;
    --theme-footer-dark: #412013;
    --theme-primary-active: #c25a2b;
    --theme-secondary-active: #db7d4b;
    --theme-footer-active: #5b2d1b;
    --bs-primary: #c25a2b;
    --bs-primary-rgb: 194, 90, 43;
    --bs-link-color: #c25a2b;
    --bs-link-hover-color: #96431f;
}

/* ── Royal Purple ── */
body[data-theme='royal'] {
    --theme-primary: #5b4fcf;
    --theme-primary-dark: #4539a3;
    --theme-secondary: #7a6de0;
    --theme-secondary-dark: #5c50bf;
    --theme-footer: #2f2a62;
    --theme-footer-dark: #221f48;
    --theme-primary-active: #5b4fcf;
    --theme-secondary-active: #7a6de0;
    --theme-footer-active: #2f2a62;
    --bs-primary: #5b4fcf;
    --bs-primary-rgb: 91, 79, 207;
    --bs-link-color: #5b4fcf;
    --bs-link-hover-color: #4539a3;
}

/* ── Slate Blue-Grey ── */
body[data-theme='slate'] {
    --theme-primary: #3d5a80;
    --theme-primary-dark: #2d4260;
    --theme-secondary: #5f7c9b;
    --theme-secondary-dark: #486786;
    --theme-footer: #243447;
    --theme-footer-dark: #1a2633;
    --theme-primary-active: #3d5a80;
    --theme-secondary-active: #5f7c9b;
    --theme-footer-active: #243447;
    --bs-primary: #3d5a80;
    --bs-primary-rgb: 61, 90, 128;
    --bs-link-color: #3d5a80;
    --bs-link-hover-color: #2d4260;
}

/* ── Amber Gold ── */
body[data-theme='amber'] {
    --theme-primary: #b07a1f;
    --theme-primary-dark: #855b16;
    --theme-secondary: #cc9838;
    --theme-secondary-dark: #a17222;
    --theme-footer: #4f3916;
    --theme-footer-dark: #38280f;
    --theme-primary-active: #b07a1f;
    --theme-secondary-active: #cc9838;
    --theme-footer-active: #4f3916;
    --bs-primary: #b07a1f;
    --bs-primary-rgb: 176, 122, 31;
    --bs-link-color: #b07a1f;
    --bs-link-hover-color: #855b16;
}

/* ── Rose Pink ── */
body[data-theme='rose'] {
    --theme-primary: #d946a6;
    --theme-primary-dark: #a83480;
    --theme-secondary: #ec4899;
    --theme-secondary-dark: #be185d;
    --theme-footer: #831843;
    --theme-footer-dark: #500724;
    --theme-primary-active: #d946a6;
    --theme-secondary-active: #ec4899;
    --theme-footer-active: #831843;
    --bs-primary: #d946a6;
    --bs-primary-rgb: 217, 70, 166;
    --bs-link-color: #d946a6;
    --bs-link-hover-color: #a83480;
}

/* ── Dark accent mode (applies on top of any theme) ── */
body[data-mode='dark'] {
    --theme-primary-active: var(--theme-primary-dark);
    --theme-secondary-active: var(--theme-secondary-dark);
    --theme-footer-active: var(--theme-footer-dark);
    --bs-primary: var(--theme-primary-dark);
    --bs-primary-rgb: 23, 78, 166; /* classic dark default; overridden by theme+dark selectors below */
    --bs-link-color: var(--theme-primary-dark);
    --bs-link-hover-color: var(--theme-secondary-dark);
    /* Keep main reading surfaces light; only accents darken. */
    --surface-muted: #f8f9fa;
    --surface-card: #ffffff;
    --body-text: #1c1c1c;
}

/* Per-theme dark RGB overrides (Bootstrap needs --bs-primary-rgb for rgba() utilities) */
body[data-theme='forest'][data-mode='dark']  { --bs-primary-rgb: 24, 89, 59; }
body[data-theme='sunset'][data-mode='dark']  { --bs-primary-rgb: 150, 67, 31; }
body[data-theme='royal'][data-mode='dark']   { --bs-primary-rgb: 69, 57, 163; }
body[data-theme='slate'][data-mode='dark']   { --bs-primary-rgb: 45, 66, 96; }
body[data-theme='amber'][data-mode='dark']   { --bs-primary-rgb: 133, 91, 22; }
body[data-theme='rose'][data-mode='dark']    { --bs-primary-rgb: 168, 52, 128; }

/* Typography */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--body-text);
    background-color: #ffffff;
}

main {
    background-color: #ffffff;
}

.bg-primary,
.navbar.bg-primary {
    background-color: var(--theme-primary-active) !important;
}

.text-primary {
    color: var(--theme-primary-active) !important;
}

.btn-primary {
    --bs-btn-bg: var(--theme-primary-active);
    --bs-btn-border-color: var(--theme-primary-active);
    --bs-btn-hover-bg: var(--theme-secondary-active);
    --bs-btn-hover-border-color: var(--theme-secondary-active);
    --bs-btn-active-bg: var(--theme-secondary-active);
    --bs-btn-active-border-color: var(--theme-secondary-active);
}

.card-header.bg-light {
    border-bottom: 2px solid var(--theme-secondary-active);
}

footer.bg-dark {
    background-color: var(--theme-footer-active) !important;
}

.theme-select-control {
    min-width: 140px;
    color: #1c1c1c;
}

/* Custom navbar styling */
.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

/* Card hover effects */
.card {
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Button enhancements */
.btn {
    border-radius: 8px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s ease-in-out;
}

.btn:hover {
    transform: translateY(-2px);
}

/* File upload zone */
.upload-zone {
    border: 3px dashed var(--theme-primary-active);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.upload-zone:hover {
    background-color: rgba(var(--bs-primary-rgb), 0.08);
    border-color: var(--theme-secondary-active);
}

.upload-zone.drag-over {
    background-color: rgba(var(--bs-primary-rgb), 0.15);
    border-color: var(--theme-secondary-active);
}

/* Loading spinner */
.spinner-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.spinner-content {
    text-align: center;
    color: white;
}

/* Quote display */
.quote-line-item {
    padding: 1rem;
    border-bottom: 1px solid #dee2e6;
}

.quote-line-item:last-child {
    border-bottom: none;
}

.quote-total {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--success-color);
}

/* Invoice preview */
.invoice-preview {
    background-color: white;
    padding: 2rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Copy button for ad content */
.copy-button {
    position: relative;
}

.copy-button .copied-tooltip {
    position: absolute;
    top: -30px;
    right: 0;
    background-color: var(--success-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.875rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.copy-button .copied-tooltip.show {
    opacity: 1;
}

/* Usage meter */
.usage-meter {
    height: 30px;
    background-color: #e9ecef;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.usage-meter-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--success-color), var(--info-color));
    transition: width 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 0.875rem;
}

.usage-meter-fill.warning {
    background: linear-gradient(90deg, var(--warning-color), #fd7e14);
}

.usage-meter-fill.danger {
    background: linear-gradient(90deg, var(--danger-color), #bb2d3b);
}

/* Job history table */
.job-history-table {
    font-size: 0.95rem;
}

.job-history-table .status-badge {
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Footer adjustments */
footer a:hover {
    color: white !important;
    text-decoration: underline !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .upload-zone {
        padding: 2rem 1rem;
    }
    
    .invoice-preview {
        padding: 1rem;
    }
}

/* ================================================================
   COMPREHENSIVE MOBILE RESPONSIVENESS ENHANCEMENTS
   ================================================================ */

/* Touch-friendly tap targets - minimum 44x44px per WCAG */
@media (max-width: 991.98px) {
    /* Navigation improvements */
    .navbar-toggler {
        padding: 0.5rem 0.75rem;
        font-size: 1.5rem;
        min-width: 44px;
        min-height: 44px;
    }
    
    .nav-link {
        padding: 0.75rem 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .navbar-collapse {
        margin-top: 0.5rem;
    }
    
    .navbar-nav .dropdown-menu {
        border: none;
        box-shadow: none;
        background-color: rgba(0, 0, 0, 0.05);
    }
    
    .navbar-dark .dropdown-menu {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    .navbar-dark .dropdown-item {
        color: rgba(255, 255, 255, 0.9);
    }
    
    .navbar-dark .dropdown-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
        color: #fff;
    }
    
    /* Button touch targets */
    .btn {
        min-height: 44px;
        padding: 0.625rem 1.25rem;
    }
    
    .btn-sm {
        min-height: 38px;
        padding: 0.5rem 1rem;
    }
    
    /* Form controls - 16px font prevents iOS zoom */
    .form-control,
    .form-select {
        min-height: 44px;
        font-size: 16px;
    }
    
    textarea.form-control {
        min-height: 100px;
    }
    
    /* Card spacing */
    .card-body {
        padding: 1rem;
    }
    
    /* Table responsiveness with horizontal scroll */
    .table-responsive {
        -webkit-overflow-scrolling: touch;
        margin-bottom: 1rem;
        border-radius: 0.375rem;
    }
    
    table {
        font-size: 0.875rem;
    }
    
    th, td {
        padding: 0.5rem !important;
        white-space: nowrap;
    }
    
    /* Modal improvements */
    .modal-dialog {
        margin: 0.5rem;
        max-width: calc(100% - 1rem);
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .modal-header,
    .modal-footer {
        padding: 0.75rem 1rem;
    }
    
    /* Typography adjustments */
    h1, .h1 {
        font-size: 1.75rem;
    }
    
    h2, .h2 {
        font-size: 1.5rem;
    }
    
    h3, .h3 {
        font-size: 1.25rem;
    }
    
    /* Pagination */
    .page-link {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem;
    }
    
    /* Breadcrumb */
    .breadcrumb {
        flex-wrap: wrap;
        padding: 0.75rem 1rem;
    }
    
    /* Alert spacing */
    .alert {
        padding: 0.75rem 1rem;
        margin-bottom: 1rem;
    }
}

/* Extra small devices (phones, portrait) */
@media (max-width: 575.98px) {
    /* Tighter spacing */
    .container,
    .container-fluid {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .card-body {
        padding: 0.75rem;
    }
    
    /* Stack button groups vertically */
    .btn-toolbar .btn-group {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .btn-toolbar .btn-group .btn {
        flex: 1;
    }
    
    /* Full-width buttons */
    .d-grid {
        display: grid !important;
    }
    
    /* Metric cards */
    .metric-value {
        font-size: 1.5rem !important;
    }
    
    .metric-label {
        font-size: 0.8rem !important;
    }
    
    /* Reduce display sizes */
    .display-1 {
        font-size: 2.5rem;
    }
    
    .display-2 {
        font-size: 2rem;
    }
    
    .display-3 {
        font-size: 1.75rem;
    }
    
    .display-4 {
        font-size: 1.5rem;
    }
    
    /* Smaller table text */
    table {
        font-size: 0.8rem;
    }
    
    th, td {
        padding: 0.35rem !important;
    }
    
    /* Stack action buttons in tables */
    .table .btn {
        padding: 0.25rem 0.5rem;
        font-size: 0.8rem;
    }
}

/* Landscape orientation optimization */
@media (max-width: 991.98px) and (orientation: landscape) {
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .nav-link {
        padding: 0.5rem 0.75rem;
    }
    
    .modal-dialog {
        max-height: calc(100vh - 1rem);
        margin: 0.5rem auto;
    }
}

/* Tablet optimizations (768px - 991px) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .container {
        max-width: 100%;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/* Touch device specific improvements */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects that don't work on touch */
    .card:hover {
        transform: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    .btn:hover {
        transform: none;
    }
    
    /* Larger touch targets for links */
    a:not(.btn):not(.nav-link):not(.dropdown-item) {
        display: inline-block;
        padding: 0.25rem 0;
    }
    
    /* Increase list item spacing */
    .list-group-item {
        padding: 1rem;
        min-height: 60px;
    }
    
    /* Better checkbox/radio touch targets */
    .form-check-input {
        width: 1.5rem;
        height: 1.5rem;
        margin-top: 0.125rem;
    }
    
    .form-check-label {
        padding-left: 0.5rem;
    }
}

/* Mobile utility classes */
@media (max-width: 767.98px) {
    .mobile-only {
        display: block !important;
    }
    
    .desktop-only {
        display: none !important;
    }
    
    /* Mobile-friendly spacing */
    .py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
    
    .my-5 {
        margin-top: 2rem !important;
        margin-bottom: 2rem !important;
    }
    
    /* Stack flex containers */
    .flex-md-row {
        flex-direction: column !important;
    }
    
    /* Full-width images */
    img {
        max-width: 100%;
        height: auto;
    }
}

/* Print optimization */
@media print {
    .navbar,
    .btn,
    footer,
    .no-print,
    .sidebar {
        display: none !important;
    }
    
    .container {
        max-width: 100%;
    }
    
    .card {
        border: 1px solid #dee2e6;
        box-shadow: none;
        page-break-inside: avoid;
    }
    
    a[href]:after {
        content: "" !important;
    }
}

/* Accessibility - Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Mobile-specific nav improvements */
@media (max-width: 991.98px) {
    .nav-text {
        margin-left: 0.5rem;
    }
    
    .navbar-nav {
        padding: 0.5rem 0;
    }
    
    .navbar-nav .nav-item {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .navbar-nav .nav-item:last-child {
        border-bottom: none;
    }
    
    /* Better dropdown on mobile */
    .dropdown-menu {
        position: static !important;
        transform: none !important;
        margin-top: 0 !important;
        border: none;
    }
}

/* Mobile table wrapper with scroll hint */
@media (max-width: 767.98px) {
    .table-responsive {
        position: relative;
    }
    
    .table-responsive::after {
        content: '→';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background: linear-gradient(to right, transparent, white 50%);
        padding: 1rem;
        font-size: 1.5rem;
        color: var(--theme-primary-active);
        pointer-events: none;
        opacity: 0.7;
    }
    
    .table-responsive::-webkit-scrollbar {
        height: 8px;
    }
    
    .table-responsive::-webkit-scrollbar-track {
        background: #f1f1f1;
        border-radius: 4px;
    }
    
    .table-responsive::-webkit-scrollbar-thumb {
        background: var(--theme-primary-active);
        border-radius: 4px;
    }
}

/* ================================================================
   MOBILE UTILITY CLASSES
   ================================================================ */

/* Display utilities for mobile */
.mobile-only {
    display: none !important;
}

.desktop-only {
    display: block !important;
}

@media (max-width: 767.98px) {
    .mobile-only {
        display: block !important;
    }
    
    .mobile-inline {
        display: inline !important;
    }
    
    .mobile-flex {
        display: flex !important;
    }
    
    .desktop-only {
        display: none !important;
    }
}

/* Text utilities for mobile */
@media (max-width: 767.98px) {
    .text-mobile-center {
        text-align: center !important;
    }
    
    .text-mobile-left {
        text-align: left !important;
    }
    
    .text-mobile-small {
        font-size: 0.875rem !important;
    }
}

/* Spacing utilities for mobile */
@media (max-width: 767.98px) {
    .p-mobile-0 { padding: 0 !important; }
    .p-mobile-1 { padding: 0.25rem !important; }
    .p-mobile-2 { padding: 0.5rem !important; }
    .p-mobile-3 { padding: 1rem !important; }
    
    .m-mobile-0 { margin: 0 !important; }
    .m-mobile-1 { margin: 0.25rem !important; }
    .m-mobile-2 { margin: 0.5rem !important; }
    .m-mobile-3 { margin: 1rem !important; }
    
    .mt-mobile-0 { margin-top: 0 !important; }
    .mt-mobile-2 { margin-top: 0.5rem !important; }
    .mt-mobile-3 { margin-top: 1rem !important; }
    
    .mb-mobile-0 { margin-bottom: 0 !important; }
    .mb-mobile-2 { margin-bottom: 0.5rem !important; }
    .mb-mobile-3 { margin-bottom: 1rem !important; }
}

/* Width utilities for mobile */
@media (max-width: 767.98px) {
    .w-mobile-100 {
        width: 100% !important;
    }
    
    .w-mobile-auto {
        width: auto !important;
    }
}

/* Flex utilities for mobile */
@media (max-width: 767.98px) {
    .flex-mobile-column {
        flex-direction: column !important;
    }
    
    .flex-mobile-wrap {
        flex-wrap: wrap !important;
    }
}

/* Card utilities for mobile */
@media (max-width: 767.98px) {
    .card-mobile-flat {
        box-shadow: none !important;
        border-radius: 0 !important;
        border-left: none !important;
        border-right: none !important;
    }
}

/* iOS Safari specific fixes */
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    min-height: 44px;
}

/* Prevent text size adjustment on mobile */
body {
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

/* Better tap highlight */
* {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    -webkit-touch-callout: none;
}

a, button, .btn {
    -webkit-tap-highlight-color: rgba(var(--bs-primary-rgb), 0.2);
}

/* Smooth scrolling for mobile */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* Better focus styles for keyboard navigation */
*:focus-visible {
    outline: 2px solid var(--theme-primary-active);
    outline-offset: 2px;
}

/* Hide scrollbars but keep functionality on mobile */
@media (max-width: 767.98px) {
    .hide-scrollbar {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .hide-scrollbar::-webkit-scrollbar {
        display: none;
    }
}

/* Loading state for touch */
.touching * {
    pointer-events: none;
}

/* Pull to refresh indicator */
.pull-refresh-active::before {
    content: '↓ Release to refresh';
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--theme-primary-active);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0 0 0.5rem 0.5rem;
    z-index: 9999;
    font-size: 0.875rem;
}

/* Mobile-friendly badge positioning */
@media (max-width: 767.98px) {
    .badge {
        font-size: 0.7rem;
        padding: 0.25em 0.5em;
    }
}

/* Better modal experience on mobile */
@media (max-width: 767.98px) {
    .modal-fullscreen-sm-down {
        width: 100vw;
        max-width: none;
        height: 100%;
        margin: 0;
    }
    
    .modal-fullscreen-sm-down .modal-content {
        height: 100%;
        border: 0;
        border-radius: 0;
    }
}

/* Sticky header support */
.sticky-mobile {
    position: sticky;
    top: 0;
    z-index: 1020;
    background: white;
}

@media (max-width: 767.98px) {
    .sticky-mobile {
        box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
}

/* Floating action button for mobile */
.fab-mobile {
    display: none;
}

@media (max-width: 767.98px) {
    .fab-mobile {
        display: flex;
        position: fixed;
        bottom: 20px;
        right: 20px;
        width: 56px;
        height: 56px;
        border-radius: 50%;
        background: var(--theme-primary-active);
        color: white;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 8px rgba(0,0,0,0.3);
        z-index: 1000;
        font-size: 1.5rem;
    }
    
    .fab-mobile:hover {
        background: var(--theme-secondary-active);
        text-decoration: none;
        color: white;
    }
}
