/* Simple Cookie Banner */
#policy-notification-box {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2147483647;
    padding: 20px 0;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.15);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 14px;
    line-height: 1.6;
    box-sizing: border-box;
    transition: transform 0.3s ease-in-out;
}

.simple-cookie-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-inner {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.cookie-text {
    margin-bottom: 5px;
}

.cookie-text a {
    color: inherit;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consents {
    display: flex;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin: 10px 0;
}

.consent-item {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    user-select: none;
}

.consent-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.consent-item span a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
}

.consent-item span a:hover {
    border-bottom-style: solid;
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.cookie-buttons button {
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookie-buttons button:hover {
    filter: brightness(1.1);
    transform: translateY(-1px);
}

.cookie-buttons button:active {
    transform: translateY(0);
}

#cookie-accept-all {
    background-color: #4CAF50 !important;
    color: white !important;
}

#cookie-save {
    background-color: rgb(255 255 255 / 88%) !important;
}

#cookie-decline {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    color: #fff !important;
}

@media (max-width: 768px) {
    .cookie-consents {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons button {
        width: 100%;
    }
}