/* Cookie Consent Banner */
.cookie-consent-banner {
    position: fixed;
    bottom: 20px;
    left: 20px;
    max-width: 500px;
    background: #ffffff;
    border: 2px solid #ff6600;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    font-family: 'Noto Sans Thai', 'Nunito', 'Poppins', sans-serif;
    display: none;
    animation: slideUp 0.3s ease-out;
}

.cookie-consent-banner.show {
    display: block;
}

@keyframes slideUp {
    from {
        transform: translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-consent-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #003a70;
    margin-bottom: 12px;
}

.cookie-consent-text {
    font-size: 0.9rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-consent-text a {
    color: #003a70;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-consent-text a:hover {
    color: #0056b3;
    text-decoration: underline;
}

.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #003a70;
    font-family: 'Noto Sans Thai', 'Nunito', 'Poppins', sans-serif;
}

.cookie-btn-customize {
    background: #ffffff;
    color: #003a70;
    border: 1px solid #003a70;
}

.cookie-btn-customize:hover {
    background: #f0f0f0;
    color: #0056b3;
    border-color: #0056b3;
}

.cookie-btn-reject {
    background: #ffffff;
    color: #003a70;
    border: 1px solid #003a70;
}

.cookie-btn-reject:hover {
    background: #f0f0f0;
    color: #0056b3;
    border-color: #0056b3;
}

.cookie-btn-accept {
    background: #003a70;
    color: #ffffff;
    border: 1px solid #003a70;
}

.cookie-btn-accept:hover {
    background: #0056b3;
    border-color: #0056b3;
}

@media (max-width: 768px) {
    .cookie-consent-banner {
        bottom: 10px;
        left: 10px;
        right: 10px;
        max-width: 100%;
    }
    
    .cookie-consent-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}

