/* Cookie Notice Styles */
#cookie-notice {
    position: fixed;
    bottom: 20px;
    right: 20px;
    max-width: 400px;
    background-color: #333;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    z-index: 999999;
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.5;
    animation: cookie-notice-slide-in 0.3s ease-out;
    opacity: 1;
    transition: opacity 0.3s ease-out, transform 0.3s ease-out;
}

#cookie-notice.cookie-notice-hiding {
    opacity: 0;
    transform: translateY(20px);
}

.cookie-notice-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-notice-text {
    margin: 0;
    color: #fff;
}

.cookie-notice-accept {
    align-self: flex-end;
    background-color: #EF813C;
    color: #fff;
    border: none;
    padding: 10px 24px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.cookie-notice-accept:hover {
    background-color: #d96f2e;
}

.cookie-notice-accept:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

@keyframes cookie-notice-slide-in {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 480px) {
    #cookie-notice {
        left: 10px;
        right: 10px;
        bottom: 10px;
        max-width: none;
    }
}
