<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
 * True North Adventures - Cookie Consent Stylesheet
 * Styles for the cookie consent banner and settings panel
 */

/* ===== Cookie Consent Banner ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none;
}

.cookie-consent.visible {
    display: block;
    animation: slideUp 0.5s ease forwards;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
}

.cookie-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.cookie-content p {
    margin-bottom: 1.5rem;
    max-width: 800px;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ===== Cookie Settings Panel ===== */
.cookie-settings {
    padding: 0 1.5rem 1.5rem;
    display: none;
    border-top: 1px solid #eee;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-settings.visible {
    display: block;
    animation: fadeIn 0.3s ease forwards;
}

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

.cookie-options {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.cookie-option {
    background-color: #f8f9fa;
    padding: 1.25rem;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cookie-option h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.cookie-option p {
    margin-bottom: 0;
    font-size: 0.9rem;
    color: #6c757d;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
    transform: scale(1.2);
}

.cookie-settings-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
    }
    
    .cookie-options {
        grid-template-columns: 1fr;
    }
    
    .cookie-settings-buttons {
        flex-direction: column;
    }
    
    .cookie-settings-buttons button {
        width: 100%;
    }
}
</pre></body></html>