/* =============================================
   AddToSchedule Brand Design Tokens
   Warm Mid-Century Modern Palette
   ============================================= */

:root {
    /* Primary Brand Colors */
    --forest-green: #2C4A3F;        /* Primary buttons, icon background, key accents, header text */
    --forest-green-dark: #233A33;   /* Hover state for primary buttons */
    --olive-green: #6E7F71;         /* Secondary actions, icons, soft accents */
    
    /* Neutral Colors */
    --warm-white: #FAF8F3;          /* Primary background for app and website */
    --sand-beige: #EDE5D7;          /* Cards, surfaces, blocks, section backgrounds */
    --soft-charcoal: #2A2A2A;       /* Main text color */
    
    /* Accent Color */
    --muted-mustard: #D2A24A;       /* Small highlights only - badges, markers, subtle UI accents */
    
    /* Text Colors */
    --text-primary: #2A2A2A;        /* Soft Charcoal - main text */
    --text-secondary: #4A4A4A;      /* Slightly lighter for secondary text */
    --text-tertiary: #6E7F71;       /* Olive Green - helper text */
    --text-muted: #8A9A8E;          /* Muted text */
    
    /* Semantic Colors */
    --success-bg: #ECFDF5;
    --success-border: #A7F3D0;
    --success-text: #065F46;
    --error-bg: #FEF2F2;
    --error-border: #FECACA;
    --error-text: #991B1B;
    
    /* Minimal Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-card-hover: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-button: 0 2px 4px rgba(44, 74, 63, 0.15);
    --shadow-button-hover: 0 4px 8px rgba(44, 74, 63, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;              /* Inputs, small elements */
    --radius-md: 8px;              /* Buttons */
    --radius-lg: 12px;             /* Cards */
    --radius-xl: 16px;             /* Modals */
    
    /* Typography - Inter font stack */
    --font-family: 'Inter', 'Work Sans', 'Helvetica Neue', system-ui, Arial, sans-serif;
    
    /* Dividers */
    --divider-color: #EDE5D7;      /* Sand Beige for soft dividers */
}

/* =============================================
   Base Styles
   ============================================= */
body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--warm-white);
}

/* Typography Scale */
.text-title {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

.text-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
}

.text-helper {
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-tertiary);
}

.text-small {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: var(--text-secondary);
}

/* =============================================
   Card Styles
   ============================================= */
.card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--sand-beige);
}

.card-elevated {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card-hover);
    border: 1px solid var(--sand-beige);
}

/* =============================================
   Button Styles - Warm Mid-Century Modern
   ============================================= */

/* Primary Button - Forest Green */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--forest-green);
    color: white;
    font-weight: 600;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-md);
    border: none;
    box-shadow: var(--shadow-button);
    transition: all 0.15s ease;
    cursor: pointer;
}

.btn-primary:hover {
    background: var(--forest-green-dark);
    box-shadow: var(--shadow-button-hover);
}

.btn-primary:focus {
    outline: 2px solid var(--muted-mustard);
    outline-offset: 2px;
}

.btn-primary:active {
    transform: translateY(1px);
    box-shadow: var(--shadow-sm);
}

.btn-primary:disabled {
    background: var(--olive-green);
    box-shadow: none;
    cursor: not-allowed;
    opacity: 0.5;
}

/* Secondary Button */
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--warm-white);
    color: var(--forest-green);
    font-weight: 600;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--forest-green);
    transition: all 0.15s ease;
    cursor: pointer;
}

.btn-secondary:hover {
    background: var(--sand-beige);
    border-color: var(--forest-green-dark);
}

.btn-secondary:disabled {
    background: var(--warm-white);
    color: var(--olive-green);
    border-color: var(--olive-green);
    cursor: not-allowed;
    opacity: 0.5;
}

/* Outline Button (for secondary actions like CSV, QR) */
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: white;
    color: var(--forest-green);
    font-weight: 600;
    padding: 0.625rem 1rem;
    border-radius: var(--radius-md);
    border: 1px solid var(--olive-green);
    transition: all 0.15s ease;
    cursor: pointer;
}

.btn-outline:hover {
    background: var(--sand-beige);
    border-color: var(--forest-green);
}

.btn-outline:disabled {
    background: white;
    color: var(--olive-green);
    border-color: var(--sand-beige);
    cursor: not-allowed;
    opacity: 0.5;
}

/* =============================================
   Input Styles
   ============================================= */
.input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--warm-white);
    border: 1px solid var(--olive-green);
    border-radius: var(--radius-sm);
    font-size: 16px;
    color: var(--text-primary);
    transition: all 0.15s ease;
}

.input:focus {
    outline: none;
    border-color: var(--forest-green);
    box-shadow: 0 0 0 3px rgba(44, 74, 63, 0.1);
}

.input::placeholder {
    color: var(--text-muted);
}

/* =============================================
   Upload Zone Styles
   ============================================= */
.upload-zone {
    background: white;
    border: 2px dashed var(--olive-green);
    border-radius: var(--radius-lg);
    transition: all 0.2s ease;
    box-shadow: var(--shadow-card);
}

.upload-zone:hover {
    border-color: var(--forest-green);
    background: rgba(44, 74, 63, 0.02);
}

.upload-zone.drag-over {
    border-color: var(--forest-green);
    background: rgba(44, 74, 63, 0.05);
    box-shadow: 0 0 0 4px rgba(44, 74, 63, 0.1);
}

/* =============================================
   Spinner Animation
   ============================================= */
.spinner {
    width: 48px;
    height: 48px;
    border: 4px solid var(--sand-beige);
    border-top: 4px solid var(--forest-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* =============================================
   Premium Loading Animation
   ============================================= */

/* Pulsing Dots */
.loading-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--forest-green);
    animation: pulse 1.4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 80%, 100% {
        transform: scale(0.6);
        opacity: 0.5;
    }
    40% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Processing Steps */
.processing-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: var(--radius-md);
    background: var(--sand-beige);
    transition: all 0.3s ease;
}

.processing-step-active {
    background: rgba(44, 74, 63, 0.08);
}

.processing-step-completed {
    background: var(--success-bg);
}

.step-indicator {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--olive-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.processing-step-active .step-indicator {
    background: var(--forest-green);
    box-shadow: 0 0 0 4px rgba(44, 74, 63, 0.15);
}

.processing-step-completed .step-indicator {
    background: #10B981;
}

.step-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

.processing-step-active .step-dot {
    animation: stepPulse 1.2s ease-in-out infinite;
}

.processing-step-completed .step-dot {
    display: none;
}

.processing-step-completed .step-indicator::after {
    content: '';
    width: 10px;
    height: 6px;
    border: 2px solid white;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    margin-top: -2px;
}

.step-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-tertiary);
    transition: color 0.3s ease;
}

.processing-step-active .step-text {
    color: var(--text-primary);
    font-weight: 600;
}

.processing-step-completed .step-text {
    color: var(--success-text);
}

@keyframes stepPulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
}

/* =============================================
   Status Message Styles
   ============================================= */
.status-success {
    background-color: var(--success-bg);
    border: 1px solid var(--success-border);
    color: var(--success-text);
    padding: 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.status-error {
    background-color: var(--error-bg);
    border: 1px solid var(--error-border);
    color: var(--error-text);
    padding: 1rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* =============================================
   Table Styles
   ============================================= */
.events-table-container {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--sand-beige);
    overflow: hidden;
}

tbody tr:nth-child(even) {
    background-color: var(--warm-white);
}

tbody tr:hover {
    background-color: var(--sand-beige);
}

thead {
    background-color: var(--sand-beige);
}

thead th {
    font-weight: 600;
    color: var(--text-primary);
}

/* Editable Cell Styles */
.editable-cell {
    cursor: pointer;
    padding: 0.75rem 1.5rem;
    transition: background-color 0.15s ease;
}

.editable-cell:hover {
    background-color: rgba(44, 74, 63, 0.05);
}

.editable-cell input {
    width: 100%;
    padding: 0.5rem;
    border: 2px solid var(--forest-green);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    outline: none;
    background: white;
}

.editable-cell input:focus {
    border-color: var(--forest-green);
    box-shadow: 0 0 0 3px rgba(44, 74, 63, 0.1);
}

/* =============================================
   Action Button Styles
   ============================================= */
.action-btn {
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    cursor: pointer;
    background: transparent;
    border: none;
}

.action-btn:hover {
    background-color: var(--sand-beige);
}

.delete-btn:hover {
    background-color: var(--error-bg);
    color: #DC2626;
}

/* =============================================
   Schedule Choice Cards
   ============================================= */
.choice-card {
    background: var(--sand-beige);
    border-radius: var(--radius-lg);
    padding: 1.25rem;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.choice-card-active {
    background: white;
    border-color: var(--forest-green);
    box-shadow: 0 0 0 3px rgba(44, 74, 63, 0.08);
}

.choice-card-disabled {
    opacity: 0.6;
    background: var(--sand-beige);
    border-color: var(--olive-green);
}

/* =============================================
   Sync Calendar Cards
   ============================================= */
.sync-card {
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--sand-beige);
    transition: all 0.15s ease;
    cursor: pointer;
    width: 100%;
}

.sync-card:hover {
    border-color: var(--forest-green);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.sync-card:active {
    transform: translateY(0);
    box-shadow: var(--shadow-card);
}

.sync-card:focus {
    outline: none;
    border-color: var(--forest-green);
    box-shadow: 0 0 0 3px rgba(44, 74, 63, 0.1);
}

/* Recommended Calendar Card - highlighted for device */
.sync-card-recommended {
    background: rgba(44, 74, 63, 0.03);
    border-radius: var(--radius-lg);
    border: 2px solid var(--forest-green);
    transition: all 0.15s ease;
    cursor: pointer;
    width: 100%;
}

.sync-card-recommended:hover {
    background: rgba(44, 74, 63, 0.06);
    box-shadow: var(--shadow-card-hover);
    transform: translateY(-2px);
}

.sync-card-recommended:active {
    transform: translateY(0);
    box-shadow: var(--shadow-card);
}

.sync-card-recommended:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(44, 74, 63, 0.15);
}

/* =============================================
   QR Code Container
   ============================================= */
.qr-container {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--sand-beige);
    text-align: center;
}

/* =============================================
   Edit Link Container
   ============================================= */
.edit-link-container {
    background: rgba(44, 74, 63, 0.05);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid rgba(44, 74, 63, 0.15);
}

/* =============================================
   Modal Styles
   ============================================= */
.modal-content {
    background: var(--warm-white);
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    max-width: 480px;
    width: 100%;
    margin: 1rem;
    padding: 1.5rem;
}

/* =============================================
   Section Container
   ============================================= */
.section-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    border: 1px solid var(--sand-beige);
    padding: 1.5rem;
}

/* =============================================
   Badge Styles
   ============================================= */
.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-pro {
    background: var(--forest-green);
    color: white;
}

.badge-mustard {
    background: var(--muted-mustard);
    color: white;
}

.badge-coming-soon {
    background: var(--sand-beige);
    color: var(--olive-green);
}

/* =============================================
   Responsive Adjustments
   ============================================= */
@media (max-width: 768px) {
    :root {
        --radius-lg: 10px;
    }
    
    table {
        font-size: 0.875rem;
    }
    
    th, td {
        padding: 0.5rem 0.75rem;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 0.625rem 1rem;
        font-size: 14px;
    }
}

/* =============================================
   PWA & Mobile Enhancements
   ============================================= */

/* Safe area insets for iPhone notch and home bar */
@supports (padding-top: env(safe-area-inset-top)) {
    body {
        padding-top: env(safe-area-inset-top);
        padding-bottom: env(safe-area-inset-bottom);
        padding-left: env(safe-area-inset-left);
        padding-right: env(safe-area-inset-right);
    }
    
    header {
        padding-top: env(safe-area-inset-top);
    }
}

/* =============================================
   Premium Loading Overlay
   ============================================= */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: var(--forest-green);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.4s ease-out;
}

.loading-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.loading-overlay.fade-out {
    opacity: 0;
}

.loading-content {
    text-align: center;
    color: white;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.loading-spinner {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 24px;
}

.spinner-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: bounce 1.4s infinite ease-in-out both;
}

.spinner-dot:nth-child(1) { animation-delay: -0.32s; }
.spinner-dot:nth-child(2) { animation-delay: -0.16s; }
.spinner-dot:nth-child(3) { animation-delay: 0s; }

@keyframes bounce {
    0%, 80%, 100% { transform: scale(0.6); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

.loading-message {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
    animation: fadeIn 0.4s ease-out 0.2s both;
}

.loading-submessage {
    font-size: 0.875rem;
    opacity: 0.8;
    animation: fadeIn 0.4s ease-out 0.4s both;
}

/* =============================================
   PWA Install Prompt (Slide-up Sheet)
   ============================================= */
.install-prompt {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    z-index: 9998;
    animation: fadeIn 0.3s ease-out;
}

.install-prompt.hidden {
    display: none;
}

.install-prompt-content {
    background: white;
    border-radius: 20px 20px 0 0;
    padding: 24px;
    padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    width: 100%;
    max-width: 480px;
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.install-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sand-beige);
    color: var(--olive-green);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.install-close:hover {
    background: var(--olive-green);
    color: white;
}

.install-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.install-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    margin-bottom: 8px;
}

.install-description {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    text-align: center;
    margin-bottom: 20px;
}

.install-steps {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 8px;
}

.install-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--sand-beige);
    border-radius: var(--radius-lg);
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.step-number {
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--forest-green);
    color: white;
    border-radius: 50%;
    font-weight: 600;
    font-size: 0.875rem;
    flex-shrink: 0;
}

/* =============================================
   Micro-interactions & Transitions
   ============================================= */

/* Button tap/click feedback */
.btn-primary,
.btn-secondary,
.btn-outline {
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary:active,
.btn-secondary:active,
.btn-outline:active {
    transform: scale(0.98);
}

@media (hover: hover) {
    .btn-primary:hover,
    .btn-secondary:hover,
    .btn-outline:hover {
        transform: scale(1.02);
    }
    
    .btn-primary:active,
    .btn-secondary:active,
    .btn-outline:active {
        transform: scale(0.98);
    }
}

/* Upload zone interactions */
.upload-zone {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.upload-zone.drag-active {
    transform: scale(1.01);
    box-shadow: 0 0 0 3px rgba(44, 74, 63, 0.2), var(--shadow-card-hover);
    border-color: var(--forest-green);
    background: rgba(44, 74, 63, 0.05);
}

/* Card hover effects */
.card,
.section-card {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
    .card:hover,
    .section-card:hover {
        box-shadow: var(--shadow-card-hover);
    }
}

/* Table row hover */
.events-table tbody tr {
    transition: background-color 0.2s ease;
}

.events-table tbody tr:hover {
    background: var(--sand-beige);
}

/* Modal slide-up animation */
.modal-content {
    animation: modalSlideUp 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Success checkmark animation */
@keyframes checkmark {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.success-checkmark {
    animation: checkmark 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Fade transitions for sections */
.fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

.fade-out {
    animation: fadeOut 0.3s ease-out forwards;
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Slide transitions */
.slide-up {
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* =============================================
   Mobile-specific Styles
   ============================================= */
@media (max-width: 640px) {
    /* Larger touch targets */
    .btn-primary,
    .btn-secondary {
        min-height: 48px;
        padding: 14px 20px;
    }
    
    /* Full-width buttons on mobile */
    .sync-card-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    /* Larger input fields */
    .input {
        min-height: 48px;
        font-size: 16px; /* Prevents iOS zoom on focus */
    }
    
    /* Better table scrolling */
    .events-table-container {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Adjust loading overlay text */
    .loading-message {
        font-size: 1.125rem;
    }
    
    /* Full-width cards */
    .card,
    .section-card {
        border-radius: var(--radius-md);
    }
}

/* =============================================
   Swipe-to-delete hint (touch devices)
   ============================================= */
@media (pointer: coarse) {
    .events-table tbody tr {
        position: relative;
    }
    
    .swipe-hint {
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        background: var(--error-bg);
        color: var(--error-text);
        padding: 4px 8px;
        border-radius: 4px;
        font-size: 0.75rem;
        opacity: 0;
        transition: opacity 0.2s ease;
    }
    
    .events-table tbody tr:active .swipe-hint {
        opacity: 1;
    }
}

/* =============================================
   PWA Standalone Mode Styles
   ============================================= */
@media (display-mode: standalone) {
    /* Hide browser-specific elements when running as PWA */
    .browser-only {
        display: none !important;
    }
    
    /* Adjust header for standalone mode */
    header {
        position: sticky;
        top: 0;
        z-index: 100;
    }
}

/* =============================================
   Upgrade Modal Animation
   ============================================= */
.animate-scale-up {
    animation: scaleUp 0.3s ease-out;
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Modal positioning */
#upgradeModal {
    position: relative;
}

/* =============================================
   Icon Styles (Stroke-based)
   ============================================= */
.icon {
    stroke-width: 2.5px;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-forest {
    color: var(--forest-green);
    stroke: var(--forest-green);
}

.icon-olive {
    color: var(--olive-green);
    stroke: var(--olive-green);
}
