:root {
    --primary-color: #5865F2;
    --secondary-color: #2c2f33;
    --accent-color: #99AAB5;
    --text-color: #ffffff;
    --dark-bg: #23272A;
}

body {
    background-color: var(--dark-bg);
    color: var(--text-color);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    padding-top: 56px;
}

.card {
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
    transition: transform 0.2s;
    background-color: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.card:hover {
    transform: translateY(-5px);
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    background: var(--secondary-color) !important;
    transition: box-shadow 0.3s ease;
}

.navbar-brand {
    color: var(--text-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #4752c4;
    border-color: #4752c4;
}

.btn-outline-secondary {
    color: var(--text-color);
    border-color: var(--accent-color);
}

.btn-outline-secondary:hover {
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

.achievement-badge {
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    color: var(--text-color);
}

.achievement-badge.unlocked {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.diary-entry {
    padding: 15px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
}

.streak-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
}

#streakCount {
    color: var(--primary-color);
    font-size: 3.5rem;
    font-weight: bold;
}

.animate__bounceIn {
    animation-duration: 0.75s !important;
}

.btn {
    border-radius: 25px;
    padding: 10px 20px;
}

.modal-content {
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-header {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.modal-footer {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.list-group-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

/* Coping Strategies Modal Styles */
.modal-lg {
    max-width: 800px;
}

.list-group-item {
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 8px;
    padding: 12px 15px;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-color);
}

.list-group-item strong {
    display: block;
    color: var(--text-color);
}

.list-group-item small {
    color: var(--accent-color);
}

.modal-body h6 {
    color: var(--text-color);
    font-weight: 600;
    padding-bottom: 5px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

canvas {
    position: fixed;
    z-index: 9999;
    pointer-events: none;
}

/* Dark Mode Styles */
body.dark-mode {
    background-color: var(--dark-bg);
}

body.dark-mode .card {
    background-color: var(--secondary-color);
}

body.dark-mode .navbar {
    background-color: var(--secondary-color) !important;
}

body.dark-mode .modal-content {
    background-color: var(--secondary-color);
    color: var(--text-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body.dark-mode .list-group-item {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

body.dark-mode .list-group-item:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

body.dark-mode .modal-header,
body.dark-mode .modal-footer {
    border-color: #404040;
}

body.dark-mode .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

/* Enhanced Dark Mode Text Colors */
body.dark-mode .text-muted,
body.dark-mode small.text-muted,
body.dark-mode .modal-body small {
    color: #b0b0b0 !important;
}

body.dark-mode .form-control {
    background-color: #363636;
    border-color: #404040;
    color: #fff;
}

body.dark-mode .form-control::placeholder {
    color: #888;
}

body.dark-mode .diary-entry {
    background-color: #363636;
    border-left-color: #0d6efd;
}

/* Dark Mode Achievement Badges */
body.dark-mode .achievement-badge {
    background-color: #363636;
    border-color: #404040;
    color: #fff;
}

body.dark-mode .achievement-badge.unlocked {
    background-color: #198754;
    color: white;
    border-color: #15704d;
}

/* Dark Mode Difficulty Badges */
body.dark-mode .difficulty-badge {
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Dark Mode List Items */
body.dark-mode .list-group-item strong {
    color: #fff;
}

/* Dark Mode Buttons */
body.dark-mode .btn-outline-secondary {
    color: #fff;
    border-color: #666;
}

body.dark-mode .btn-outline-secondary:hover {
    background-color: #404040;
    color: #fff;
}

/* Dark Mode Form Elements */
body.dark-mode .form-check-label {
    color: #fff;
}

body.dark-mode .form-check-input {
    background-color: #363636;
    border-color: #404040;
}

body.dark-mode .form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

/* Dark Mode Custom Popup */
body.dark-mode .popup-container {
    background-color: #2d2d2d;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

body.dark-mode .popup-close {
    color: #fff;
}

body.dark-mode .popup-title {
    color: #fff;
}

body.dark-mode .popup-message {
    color: #b0b0b0;
}

/* Dark Mode Streak Counter */
body.dark-mode #streakCount {
    color: #2ecc71;
}

/* Dark Mode Section Headers */
body.dark-mode .card h3 {
    color: #fff;
}

body.dark-mode .modal-body h6 {
    color: #fff;
    border-bottom-color: #404040;
}

/* Additional Dark Mode Text Fixes */
body.dark-mode .card p,
body.dark-mode .card label,
body.dark-mode .card h4 {
    color: #fff;
}

/* Specific text fixes */
body.dark-mode #streakCount + p {  /* "Days Vape-Free" text */
    color: #b0b0b0;
}

body.dark-mode .form-label {  /* "Did you vape today?" text */
    color: #fff;
}

body.dark-mode h4,
body.dark-mode h4 span {  /* "Today's count: 0" text */
    color: #fff;
}

/* Make all headings white in dark mode */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #fff;
}

/* Make all regular text white in dark mode */
body.dark-mode .card-body {
    color: #fff;
}

/* Form controls */
.form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
}

.form-control:focus {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--primary-color);
    color: var(--text-color);
    box-shadow: 0 0 0 0.25rem rgba(88, 101, 242, 0.25);
}

.form-control::placeholder {
    color: var(--accent-color);
}

/* Text colors */
.text-muted {
    color: var(--accent-color) !important;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--text-color);
}

/* Custom Popup Styles */
#customPopup {
    position: fixed !important;
    bottom: 24px !important;
    right: 24px !important;
    z-index: 999999 !important;
    display: none;
    background: #1a1a1a;
    color: #fff;
    padding: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    min-width: 300px;
    max-width: 400px;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    animation: slideIn 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.popup-icon {
    font-size: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.popup-text {
    flex-grow: 1;
    margin-right: 20px;
}

.popup-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 4px 0;
    color: #fff;
}

.popup-message {
    font-size: 14px;
    margin: 0;
    color: #b0b0b0;
    line-height: 1.4;
}

.popup-close {
    position: absolute;
    top: 8px;
    right: 8px;
    cursor: pointer;
    opacity: 0.7;
    font-size: 20px;
    color: #fff;
    background: none;
    border: none;
    padding: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.popup-close:hover {
    opacity: 1;
}

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

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

#customPopup.hiding {
    animation: slideOut 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Fix for warning button */
.btn-warning {
    color: var(--dark-bg) !important;
    font-weight: bold;
}

/* Fix for difficulty badges */
.difficulty-badge {
    padding: 5px 10px;
    border-radius: 15px;
    color: var(--text-color);
}

.difficulty-easy {
    background-color: #28a745;
}

.difficulty-medium {
    background-color: #ffc107;
    color: #000 !important;
}

.difficulty-hard {
    background-color: #dc3545;
}

/* Emission stats styling */
.emission-stats {
    padding-top: 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.emission-stats small {
    display: block;
    line-height: 1.4;
}

#carbonCount {
    color: #2ecc71;
    font-weight: bold;
}

.eco-impact {
    font-style: italic;
}

/* Tree Growth System */
.tree-container {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 15px 0;
    position: relative;
}

.tree-stage-0 {
    width: 30px;
    height: 30px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8" fill="%23795548"/><path d="M12 8v8M8 12h8" stroke="%23fff" stroke-width="2"/></svg>') center/contain no-repeat;
    transition: all 0.5s ease;
}

.tree-stage-1 {
    width: 40px;
    height: 60px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20V10M12 10C12 10 8 12 8 8S12 4 12 4s4 2 4 6-4 0-4 0z" stroke="%234CAF50" fill="%234CAF50"/><path d="M11 20h2" stroke="%23795548" stroke-width="2"/></svg>') center/contain no-repeat;
}

.tree-stage-2 {
    width: 80px;
    height: 120px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20V8M12 8C12 8 6 12 6 6s6-4 6-4 6 0 6 6-6 0-6 0z" stroke="%234CAF50" fill="%234CAF50"/><path d="M10 20h4" stroke="%23795548" stroke-width="2"/></svg>') center/contain no-repeat;
}

.tree-stage-3 {
    width: 120px;
    height: 160px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 20V6M12 6C12 6 4 12 4 4s8-4 8-4 8 0 8 8-8-2-8-2z" stroke="%234CAF50" fill="%234CAF50"/><path d="M9 20h6" stroke="%23795548" stroke-width="2"/></svg>') center/contain no-repeat;
}

.tree-apple {
    position: absolute;
    width: 12px;
    height: 12px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="8" fill="%23f44336"/></svg>') center/contain no-repeat;
    transition: all 0.3s ease;
}

.water-animation {
    animation: waterDrop 1s ease-out;
}

@keyframes waterDrop {
    0% { transform: translateY(-20px); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(0); opacity: 0; }
}

#waterButton:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.tree-stage-transition {
    animation: growTree 1s ease-out;
}

@keyframes growTree {
    0% { transform: scale(0.8); opacity: 0.5; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

/* Tree page specific styles */
.tree-container-large {
    height: 400px;
    margin: 30px 0;
}

.tree-container-large .tree-stage-0 { width: 60px; height: 60px; }
.tree-container-large .tree-stage-1 { width: 80px; height: 120px; }
.tree-container-large .tree-stage-2 { width: 160px; height: 240px; }
.tree-container-large .tree-stage-3 { width: 240px; height: 320px; }

.tree-stat {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.tree-stat h5 {
    color: var(--accent-color);
    margin-bottom: 5px;
    font-size: 0.9rem;
}

.tree-stat p {
    color: var(--text-color);
    font-size: 1.2rem;
    margin: 0;
    font-weight: bold;
}

/* Navigation active state */
.nav-link.active {
    color: var(--text-color) !important;
    font-weight: bold;
    position: relative;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background-color: var(--text-color);
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

.pulse-animation {
    animation: pulse 0.5s ease-in-out;
    display: inline-block;
}

/* Welcome Overlay Styles */
.welcome-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(8px);
}

.welcome-message {
    color: white;
    text-align: center;
    padding: 2rem;
    border-radius: 20px;
    background: rgba(26, 26, 26, 0.8);
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
}

.welcome-message h1 {
    font-size: 2.5rem;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Onboarding Modal Styles */
.onboarding-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.onboarding-content {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
    border: 1px solid #333;
    color: #fff;
}

.onboarding-content h2 {
    color: #fff;
    font-size: 2.2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.onboarding-content p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.language-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.language-buttons button {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
}

.name-input {
    margin-top: 2rem;
}

.name-input input {
    background: #2a2a2a;
    border: 1px solid #444;
    color: #fff;
    padding: 1rem;
    font-size: 1.2rem;
    width: 100%;
    margin-bottom: 1rem;
}

.name-input input:focus {
    background: #333;
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    outline: none;
}

.name-input button {
    width: 100%;
    padding: 1rem;
    font-size: 1.2rem;
}

/* Animation classes */
.animate__fadeOutLeft {
    animation: fadeOutLeft 0.5s forwards;
}

.animate__fadeInRight {
    animation: fadeInRight 0.5s forwards;
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
        transform: translateX(0);
    }
    to {
        opacity: 0;
        transform: translateX(-100%);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Onboarding Step Transitions */
.step {
    opacity: 1;
    transition: opacity 0.5s ease;
}

#languageStep {
    opacity: 1;
}

#nameStep {
    opacity: 0;
}

.animate__fadeInRight {
    animation: fadeInRight 0.5s ease forwards;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Make sure buttons are clickable */
.language-buttons button {
    position: relative;
    z-index: 100;
    cursor: pointer;
}

/* Ensure modal is on top */
.onboarding-modal {
    z-index: 9999 !important;
}

/* Water Droplet Animation */
.water-droplet {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #4dabf7;
    border-radius: 50%;
    animation: waterDrop 1s ease-in forwards;
    opacity: 0.8;
}

@keyframes waterDrop {
    0% {
        top: -20px;
        opacity: 0.8;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        top: 100%;
        opacity: 0;
    }
}

/* Tree Container Styles */
.tree-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.5s ease;
}

/* Add custom scrollbar styles */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #1a1a1a;
}

::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Window Controls */
.window-controls {
    position: relative;
    display: none; /* Hidden by default */
    -webkit-app-region: no-drag;
    margin-right: 0;
    margin-left: 10px;
}

/* Only show window controls in Electron */
body.electron .window-controls {
    display: flex;
}

.window-control-button {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.2s;
    padding: 0;
}

.window-control-button:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.window-control-button.close:hover {
    background-color: #e81123;
}

/* Make the navbar draggable for window movement */
.navbar {
    -webkit-app-region: drag;
    padding-right: 0;
}

/* Make navbar buttons non-draggable */
.navbar button,
.navbar a,
.navbar select,
.window-controls {
    -webkit-app-region: no-drag;
}

/* Settings button positioning */
.navbar .btn-link {
    position: relative;
    z-index: 1;
}

/* Settings button in navbar */
.navbar .btn-link.nav-link {
    padding: 0.5rem 1rem;
    color: var(--text-color) !important;
    text-decoration: none;
    margin: 0;
}

.navbar .btn-link.nav-link:hover {
    color: var(--accent-color) !important;
}

.navbar .btn-link.nav-link i {
    transition: transform 0.3s ease;
}

.navbar .btn-link.nav-link:hover i {
    transform: rotate(45deg);
}

/* Add shadow when scrolled */
.navbar.scrolled {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(8px);
    background-color: rgba(13, 110, 253, 0.95); /* Slightly transparent primary color */
}

/* Coping Strategies Modal Styles */
.coping-alert {
    background: linear-gradient(135deg, #2d3436 0%, #2d3436 100%);
    border: none;
    border-left: 4px solid #4CAF50;
    color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.coping-alert h6 {
    color: #4CAF50;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.coping-alert p {
    color: #b0b0b0;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Breathing Timer Styles */
.breathing-instruction {
    font-size: 1.5rem;
    color: #4CAF50;
    font-weight: 500;
    margin: 1rem 0;
}

#timerDisplay {
    font-family: monospace;
    color: #4CAF50;
    font-size: 4rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.progress {
    height: 8px;
    background-color: rgba(76, 175, 80, 0.1);
    border-radius: 4px;
}

.progress-bar {
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    border-radius: 4px;
}

/* Coping Strategy Cards */
.coping-card {
    background: linear-gradient(135deg, #2d3436 0%, #2d3436 100%);
    border: none;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coping-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.coping-card .card-body {
    padding: 1.25rem;
}

.coping-card h6 {
    color: #4CAF50;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.coping-card small {
    color: #b0b0b0;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Download Button */
.download-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
    animation: slideInUp 0.3s ease-out;
}

.download-button .btn {
    padding: 10px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.download-button .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

/* Download Modal */
.download-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.download-option {
    text-align: center;
    padding: 20px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    transition: transform 0.2s ease;
}

.download-option:hover {
    transform: translateY(-5px);
}

.download-option i {
    margin-bottom: 10px;
    color: var(--primary-color);
}

.download-option h6 {
    margin: 10px 0 5px;
    color: var(--text-color);
}

.download-option small {
    display: block;
    margin-bottom: 15px;
}

.download-option .btn {
    width: 100%;
    border-radius: 20px;
}

@keyframes slideInUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
} 