/* Simple Cookie Consent Styles - Build 037 - DEBUG VERSION */

.cookie-consent-banner {
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    background: #e74c3c !important; /* BRIGHT RED FOR TESTING */
    color: white !important;
    padding: 20px !important;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.8) !important;
    z-index: 999999 !important;
    font-family: Arial, sans-serif !important;
    border-top: 5px solid #f39c12 !important; /* BRIGHT ORANGE BORDER */
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    min-height: 80px !important;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-consent-text h3 {
    margin: 0 0 10px 0;
    color: #3498db;
    font-size: 18px;
}

.cookie-consent-text p {
    margin: 0;
    line-height: 1.4;
    opacity: 0.9;
}

.cookie-consent-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.cookie-btn-accept {
    background-color: #27ae60;
    color: white;
}

.cookie-btn-accept:hover {
    background-color: #219a52;
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background-color: transparent;
    color: #bdc3c7;
    border: 2px solid #bdc3c7;
}

.cookie-btn-decline:hover {
    background-color: #bdc3c7;
    color: #2c3e50;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        max-width: 200px;
    }
}

/* Animation - DISABLED FOR TESTING */
/*
.cookie-consent-banner {
    animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}
*/