/* #cookieConsent {
    transition: all 0.3s ease;
    transform: translateY(100%);
    opacity: 0;
}

#cookieConsent.show {
    transform: translateY(0);
    opacity: 1;
} */

.cookieConsentfixed {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
     background: url(../assets/images/head_bg.png);
              background-repeat: repeat;
    color: white;
    padding: 1rem; /* p-4 */
    z-index: 99999; /* z-50 */
}

#cookieConsent button {
    transition: all 0.2s ease;
}

#cookieConsent button:hover {
    transform: translateY(-2px);
}
 

#cookieConsent .accept-btn {
    background-color: #22c55e; /* Tailwind bg-green-500 */
    color: white;
}

.btn-blue {
    background-color: #3b82f6; /* Tailwind bg-blue-500 */
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.btn-blue:hover {
    background-color: #2563eb; /* Tailwind bg-blue-600 */
}

.btn-gray {
    background-color: #4b5563; /* Tailwind bg-gray-600 */
    color: #ffffff;
    transition: background-color 0.3s ease;
}

.btn-gray:hover {
    background-color: #374151; /* Tailwind bg-gray-700 */
}
@media (max-width: 768px) {
    #cookieConsent {
        padding: 1rem;
    }
    
    #cookieConsent .container {
        flex-direction: column;
    }
    
    #cookieConsent .flex {
        width: 100%;
        justify-content: space-between;
    }
   
}