/* Cookie Notice Styles */
.cookie-notice-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #333;
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.cookie-notice-container.show {
    transform: translateY(0);
}

.cookie-notice-container.hide {
    transform: translateY(100%);
}

#cn-notice-text {
    margin-right: 20px;
    font-size: 14px;
    line-height: 1.5;
    max-width: 800px;
}

.cn-set-cookie {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s;
    text-transform: uppercase;
    font-weight: 500;
}

.cn-set-cookie:hover {
    background-color: #45a049;
}

/* Responsive styles */
@media (max-width: 768px) {
    .cookie-notice-container {
        padding: 15px;
        flex-direction: column;
    }
    
    #cn-notice-text {
        margin-right: 0;
        margin-bottom: 15px;
        font-size: 13px;
    }
    
    .cn-set-cookie {
        font-size: 14px;
        padding: 8px 25px;
    }
}