/* Cookie Consent Notification Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    z-index: 9999;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    border-top: 1px solid #333;
}

.cookie-consent-text {
    flex: 1;
    margin-right: 20px;
    font-size: 14px;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 8px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
    transition: background-color 0.3s;
}

.cookie-btn-accept {
    background-color: limegreen;
    color: white;
}

.cookie-btn-accept:hover {
    background-color: #32cd32;
}

.cookie-btn-reject {
    background-color: #ff4d4d;
    color: white;
}

.cookie-btn-reject:hover {
    background-color: #ff3333;
}

@media (max-width: 768px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-text {
        margin-right: 0;
        margin-bottom: 15px;
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .cookie-consent-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-btn {
        width: 100%;
        margin-bottom: 5px;
    }
}