/* Styles personnalisés pour le gestionnaire de cookies */
#root {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999999;
}

/* Override des styles de base pour correspondre au design de CookieYes */
.cookie-consent {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    box-shadow: 0 -1px 10px rgba(0, 0, 0, 0.1);
}

.cookie-consent button {
    border-radius: 4px !important;
    font-weight: 500 !important;
    transition: all 0.2s ease !important;
}

.cookie-consent button:hover {
    transform: translateY(-1px);
}

/* Animation d'entrée */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#root > div {
    animation: slideUp 0.5s ease-out;
}

/* Ensure styles are not conflicting with theme */
#root button {
    font-family: inherit !important;
    line-height: normal !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

#root * {
    box-sizing: border-box !important;
}