/* Cookies consent styles */
#cookie-consent-banner * {
    all: unset; 
    box-sizing: border-box;
}

#cookie-consent-banner {
    position: fixed;
    display: flex;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    bottom: 10px;
    left: 10px;
    /*right: 10px;*/
    width: calc(100% - 20px);
    max-width: 500px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    /*font-family: Arial, sans-serif; */
    font-weight: normal;
    color: #000000;
    z-index: 40000;
}

#cookie-consent-banner h3 {
    text-align: center;
    font-size: clamp(12px, 2vw, 16px);
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 10px;
}

#cookie-consent-banner p {
    text-align: center;
    font-size: clamp(10px, 1.5vw, 14px);
    line-height: 1.4;
    margin-bottom: 10px;
    text-wrap: balance;
}

#cookie-consent-banner label {
    display: flex;
    align-items: center;
    margin: 5px 0;
    font-size: clamp(10px, 1.5vw, 12px);
    line-height: 1.4;
}

#cookie-consent-banner label input[type="checkbox"] {
    all: revert; 
    margin-right: 8px;
    flex-shrink: 0;
    accent-color: #007bff; 
}

#cookie-consent-banner .cookie-consent-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

#cookie-consent-banner .cookie-consent-buttons {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

#cookie-consent-banner .cookie-consent-buttons button {
    all: revert;
    display: block;
    padding: 8px 15px;
    border: none;
    border-radius: 6px;
    box-sizing: border-box;
    color: #fff;
    font-size: clamp(10px, 1.2vw, 12px);
    font-weight: 600;
    line-height: 1;
    cursor: pointer;
    text-align: center;
    transition: background-color 0.3s ease;
}

#cookie-consent-banner .cookie-consent-buttons button {
/* Style colors of button */
    background-color: #000;
    color: #fff;
    font-weight: 500;
    border: 1px solid #000;
}

/*#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(1) {
    background-color: #b0b0b0;
    color: #ffffff;
    font-weight: 400;
}

#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(2) {
    background-color: #8eaec9;
    color: #ffffff;
    font-weight: 500;
}

#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(3) {
    background-color: #4CAF50;
    color: #ffffff;
    font-weight: 700;
    transform: scale(1.05);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
}

#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(3):hover {
    background-color: #45a049;
}

#cookie-consent-banner .cookie-consent-buttons button:nth-of-type(2):hover {
    background-color: #7a9db7;
}*/


@media screen and (max-width: 600px) {
    #cookie-consent-banner {
        bottom: 0;
        right: 0;
        width: calc(100% - 16px);
        margin: 0px;
        max-width: none;
        border-radius: 5px;
    }

    #cookie-consent-banner h3 {
        font-size: clamp(16px, 5vw, 20px);
        line-height: 1.4;
        margin-bottom: 10px;
    }

    #cookie-consent-banner p {
        font-size: clamp(10px, 2.5vw, 14px);
        line-height: 1.6;
        margin-bottom: 10px;
    }

    #cookie-consent-banner .cookie-consent-options {
        gap: 8px;
    }

    #cookie-consent-banner .cookie-consent-buttons {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
    }

    #cookie-consent-banner .cookie-consent-buttons button {
        min-width: 80px;
        height: 35px;
        font-size: clamp(13px, 3vw, 15px);
        font-weight: 600;
    }
}
