/* Custom Cookie Consent Styles */
#ccc-popup {
    display: none; /* Initially hidden, shown by JS */
}

#ccc-popup.show {
    display: block !important;
}

.ccc-button {
    font-family: inherit;
    font-size: inherit;
    border-radius: 4px;
    transition: opacity 0.3s ease;
}

.ccc-button:hover {
    opacity: 0.8;
}

@media (max-width: 768px) {
    #ccc-popup .ccc-container {
        flex-direction: column;
        text-align: center;
    }
    #ccc-popup .ccc-message {
        margin-right: 0;
        margin-bottom: 15px;
    }
    #ccc-popup .ccc-buttons {
        display: flex;
        justify-content: center;
        gap: 10px;
    }
}