/* Cookie Popup Styles */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #fff;
    border: 1px solid #c82aef;
    border-radius: 8px;
    box-shadow: -3px -3px 7px 0px rgba(200.00000000000006, 42, 238.99999999999997, 0.44);
    padding: 20px;
    z-index: 9999;
    max-width: 400px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease-in-out;
}

.cookie-popup.show {
    opacity: 1;
    transform: translateY(0);
}

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

.cookie-popup-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.cookie-popup-text {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.cookie-popup-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.cookie-popup-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cookie-popup-btn.accept {
    background: #c82aef;
    color: white;
}

.cookie-popup-btn.accept:hover {
    background: #c82aefa3;
}

.cookie-popup-btn.decline {
    background: #6c757d;
    color: white;
}

.cookie-popup-btn.decline:hover {
    background: #545b62;
}

/* Dark mode support */
.lightmode .cookie-popup {
    background: #fff;
    border-color: #e0e0e0;
}

.lightmode .cookie-popup-title {
    color: #333;
}

.lightmode .cookie-popup-text {
    color: #666;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 15px;
    }
    
    .cookie-popup-buttons {
        flex-direction: column;
    }
    
    .cookie-popup-btn {
        width: 100%;
    }
}
