/* Cookie Notice Styles */
.cookie-notice {
    background-color: #f2f2f2;
    color: #111;
    right: 0;
    top: auto;
    bottom: 0;
    left: auto;
    max-width: 50%;
    position: fixed;
    overflow: auto;
    z-index: 99999999999;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    -ms-overflow-style: scrollbar;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

.cookie-notice *,
.cookie-notice *::before,
.cookie-notice *::after {
    box-sizing: border-box;
}

.cookie-notice div {
    display: block;
}

.cookie-notice-container {
    padding: 3rem;
}

.cookie-notice-title {
    color: #111;
    font-size: 24px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 1rem;
}

.cookie-notice-text {
    color: #111;
    font-size: 16px;
    margin: 0 0 1.25rem 0;
}

.cookie-notice-buttons-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
}

.cookie-notice-accept,
.cookie-notice-decline,
.cookie-notice-preferences {
    font-weight: bold;
    font-size: 14px;
    margin-right: 0.25rem !important;
    margin-bottom: 0.25rem !important;
    -webkit-appearance: button;
    text-transform: none;
    overflow: visible;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
    border-radius: 2px;
    padding: 0.5rem 1rem;
    outline: none;
    cursor: pointer;
    border: none;
}

.cookie-notice-accept {
    color: #fff;
    background-color: green;
}

.cookie-notice-decline {
    color: #fff;
    background-color: green;
}

.cookie-notice-preferences {
    background-color: #eaeaea;
    color: #111;
}

/* Responsive design */
@media (max-width: 768px) {
    .cookie-notice {
        max-width: 100%;
        right: 0;
        left: 0;
    }
    
    .cookie-notice-container {
        padding: 2rem;
    }
    
    .cookie-notice-title {
        font-size: 20px;
    }
    
    .cookie-notice-text {
        font-size: 14px;
    }
    
    .cookie-notice-buttons-container {
        flex-direction: column;
    }
    
    .cookie-notice-accept,
    .cookie-notice-decline,
    .cookie-notice-preferences {
        width: 100%;
        margin-right: 0 !important;
    }
} 