﻿body {
    height: 100%;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    overflow-y: visible;
    overflow-x: hidden;
}

    body a {
        color: #808080;
    }

.control-label {
    display: inline-block;
    text-align: left !important;
    color: #808080;
    padding-top: 0 !important;
    margin-bottom: 0;
    font-weight: bold;
}

/* Cookies Consent Modal Start */

#cookiesPolicy div:nth-of-type(odd) {
    display: block;
    color: #0A4C93;
    font-weight: 700;
    margin-bottom: 5px;
}

#cookiesPolicy div:nth-of-type(even) {
    font-size: 12.5px;
    font-weight: bold !important;
    margin-bottom: -17px;
}

#cookiesPolicy a {
    text-decoration: underline;
    color: #808080;
}

.cookie-modal-dialog {
    max-width: 90%;
    width: 500px;
    margin: auto;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    width: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
}

.cookie-modal-header {
    padding: 15px;
    font-size: 18px;
    font-weight: 700;

}

.cookie-modal-body {
    padding: 15px;
    height: auto;
    max-height: 300px;
    /*overflow-y: auto;
    text-align: center;*/
}

    .cookie-modal-body #cookiesPolicy {
        font-size: 14px;
        line-height: 1.5;
    }

.cookie-modal-footer {
    padding: 15px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    background-color: #f8f9fa;
}

    .cookie-modal-footer .btn {
        background-color: #DF3232 !important;
        color: white !important;
        border: none;
        padding: 10px 20px;
        font-size: 14px;
        border-radius: 4px;
        transition: background-color 0.3s ease;
    }

        .cookie-modal-footer .btn:hover {
            background-color: #B72A2A !important;
        }

    .cookie-modal-footer .btn {
        height: 40px;
        line-height: normal;
    }

/* Responsive adjustments */
@media (max-width: 768px) {
    .cookie-modal-dialog {
        max-width: 95%;
        min-height: 100vh;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cookie-modal-footer {
        gap: 5px;
    }

    .cookie-modal-body {
        padding: 10px;
    }
}

@media (max-width: 576px) {
    .cookie-modal-footer .btn {
        width: 100%;
    }

        .cookie-modal-footer .btn:last-child {
            margin-left: 0;
        }
}

/* Cookies Consent Modal End */