﻿/* Your custom CSS for cookie banner and modal (from previous response) goes here */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1050;
    animation: fadeIn 0.5s ease-out forwards;
    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 767.98px) {
    .cookie-banner .container {
        flex-direction: column;
        text-align: center;
    }

    .cookie-banner p {
        margin-bottom: 1rem !important;
    }

    .cookie-banner .btn {
        width: 100%;
    }

    .cookie-banner .me-sm-2 {
        margin-right: 0 !important;
        margin-bottom: 0.5rem !important;
    }
}

.form-check-input:checked {
    background-color: var(--bs-primary);
    border-color: var(--bs-primary);
}

.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .accordion-button .form-check {
        margin-left: auto;
    }
