/* Style principal du modal */
.cookie-modal {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 20px;
    z-index: 9999;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    
    /* Préparation pour l'animation */
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.5s ease;
}

/* Classe ajoutée par le JS pour faire apparaitre le modal */
.cookie-modal.show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-content h4 {
    margin: 0 0 10px 0;
    font-size: 16px;
    color: #333;
}

.cookie-content p {
    margin: 0 0 15px 0;
    font-size: 13px;
    line-height: 1.5;
    color: #666;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

/* Boutons */
.cookie-buttons button {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 6px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s, transform 0.1s;
}

.cookie-buttons button:active {
    transform: scale(0.95);
}

.btn-accept {
    background-color: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background-color: #45a049;
}

.btn-reject {
    background-color: #f1f1f1;
    color: #333;
}

.btn-reject:hover {
    background-color: #e4e4e4;
}