#cookieConsentModal{
    max-width: 700px;
}
.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    background-color: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    font-size: 16px;
}
.cookie-consent-banner button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
}
.cookie-consent-banner button:hover {
    background-color: #218838;
}
.cookie-consent-banner .btn-primary {
    background-color: #0ab285;
    border-color: #0ab285;
}
.cookie-consent-content {
    text-align: center;
}
.cookie-consent-title {
    margin: 0 0 10px 0;
    font-size: 22px;
    line-height: 1.2;
}
.cookie-consent-footer {
    margin: 20px 0 0 0;
}
.cookie-consent-btn {
    background: #fff;
    border: 1px solid #000;
    padding: 8px 25px;
    border-radius: 5px;
    color: #000;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.cookie-consent-btn:hover {
    background: #eee;
}
.cookies-consent-ybox .insertYboxAjaxHere {
    padding-top: 13px;
}
.cookies-consent-ybox .closeYbox {
    display: none;
}
.yBoxFrame{
    max-width: 800px;
}


/* 1. The Blocker Overlay */
.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Darker semi-transparent background */
    z-index: 9998; /* Sits just below the banner */
    backdrop-filter: blur(5px); /* Blurs the website content behind */
    display: none; /* Controlled by JS */
}

/* Banner Container */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-top: 1px solid #e2e2e2;
    padding: 20px 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
    z-index: 9999;
}

.cookie-container {
    max-width: 1900px;
    margin: 0 auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0 40px;
    gap: 40px;
}

/* Text Content */
.cookie-content {
    flex: 1;
    text-align: right;
}

.cookie-title {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
    color: #333;
}

.cookie-text {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.cookie-link {
    color: #666;
    text-decoration: underline;
}

/* Button Styling */
.cookie-btn {
    background: transparent;
    border: 1px solid #333;
    padding: 10px 45px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 120px;
}

.cookie-btn:hover {
    background-color: #333;
    color: #fff;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .cookie-container {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
        align-items: flex-start;
    }
}