/* General styling for the consent popup */
.cookies_consent_popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #165797;
    color: #fff;
    padding: 15px;
    z-index: 1000;
    display: none; /* Initially hidden */
    box-shadow: 0px -2px 10px rgba(0, 0, 0, 0.2);
}

.cookies_consent_content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.cookies_consent_content p {
    margin: 0;
    padding: 0;
    flex: 1;
    font-size: 14px;
}

.cookies_consent_content a {
    color: #e36318;
    text-decoration: underline;
    font-weight: bold;
}

.cookies_consent_buttons {
    display: flex;
    gap: 10px;
    margin-left: 20px;
}

.cookies_consent_btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    font-size: 14px;
}

.cookies_consent_accept {
    background-color: #e36318;
    color: #fff;
}

.cookies_consent_reject {
    background-color: #888;
    color: #fff;
}
