<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">.cookie-consent {
    position: fixed;
    right: -400px;
    top: 62%;
    transform: translateY(-50%);
    width: 400px;
    max-width: 90vw;
    background: rgba(255, 255, 255, 0.8);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    border-radius: 8px 0 0 8px;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
    max-height: 90vh;
}

    .cookie-consent.open {
        right: 0;
    }

.cookie-tab {
    position: absolute;
    left: -70px;
    top: 90%;
    transform: translateY(-50%);
    width: 70px;
    height: 74px;
    background: #0a5d91;
    border-radius: 8px 0 0 8px;
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.cookie-content {
    padding: 24px;
}

    .cookie-content p {
        font-size: .95rem !important;
    }

    .cookie-content h3.cookie-header {
        font-size: 1rem !important;
    }

.cookie-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.btn-cookie {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.2s;
}

.btn-primary-cookie {
    background: #4CAF50;
    color: white;
}

.btn-secondary-cookie {
    background: #f5f5f5;
    color: #333;
}

.btn-cookie:hover {
    opacity: 0.9;
}

.icon {
    width: 32px;
    height: 32px;
    fill: #a4ce40;
}

.cookie-options label {
    display: block;
    margin: 10px 0;
}

/* Adjust position when screen height is too small */
/*@media screen and (max-height: 660px) {
    .cookie-consent {
        max-height: calc(100vh - 250px);
        top: 54%;
        overflow: scroll;
    }
}*/

/* Responsive adjustments for smaller screens */
@media screen and (max-width: 480px) {
    .cookie-consent {
        right: -90vw;
        font-size: 14px;
    }

        .cookie-consent.open {
            right: 0;
        }

    .cookie-content {
        padding: 16px;
    }

    .cookie-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .btn-cookie {
        width: 100%;
    }

    h3.cookie-header {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .cookie-tab {
        height: 60px;
        width: 60px;
        left: -60px;
    }

    .icon {
        width: 28px;
        height: 28px;
    }
}

/* Medium-sized screens */
@media screen and (min-width: 481px) and (max-width: 768px) {
    .cookie-consent {
        width: 320px;
        right: -320px;
        font-size: 15px;
    }

    .cookie-content {
        padding: 20px;
    }

    h3.cookie-header {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .cookie-tab {
        position: fixed !important;
        top: auto !important;
        bottom: 65px !important;
    }
}
</pre></body></html>