/* Cookie Popup Styles */
body.no-scroll {
    overflow: hidden !important;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

body.no-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

html.no-scroll {
    overflow: hidden !important;
}

.cookie-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-overlay.show {
    opacity: 1;
    visibility: visible;
}

.cookie-popup {
    background-color: #ffffff;
    border: 4px solid #0066cc;
    border-radius: 12px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

.cookie-popup h3 {
    margin: 0 0 15px 0;
    color: #333;
    font-size: 24px;
}

.cookie-popup p {
    margin: 0 0 25px 0;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-button {
    padding: 12px 30px;
    font-size: 16px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: none;
    outline: none;
    font-family: -apple-system, BlinkMacSystemFont, Arial, sans-serif;
}

.cookie-button:focus {
    outline: 2px solid #0066cc;
    outline-offset: 2px;
}

.cookie-button.accept {
    background-color: #0066cc;
    color: #ffffff;
}

.cookie-button.necessary {
    background-color: #f0f0f0;
    color: #333;
}
