﻿
/* Style du modal */
#cookieModal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background-color: #f8f9fa;
    margin: 10% auto;
    padding: 25px;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.cookie-category {
    margin: 15px 0;
    padding: 15px;
    background: white;
    border-radius: 8px;
    border-left: 4px solid #4e73df;
}

.cookie-essential {
    border-left-color: #1cc88a;
}

.btn-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Permet le passage à la ligne si nécessaire */
    gap: 10px;
    margin-top: 20px;
}

/* Style de base des boutons */
.btn {
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    text-align: center;
    flex: 1 1 auto;
    min-width: 100px;
}

/* Boutons spécifiques */
.btn-accept {
    background-color: #4e73df;
    color: white;
    border: none;
}

.btn-reject {
    background-color: #e74a3b;
    color: white;
    border: none;
}

.btn-customize {
    background-color: transparent;
    border: 1px solid #4e73df;
    color: #4e73df;
}

/* Responsive : empile les boutons sur petits écrans */
@media (max-width: 576px) {
    .btn-container {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        width: 100%;
    }
}
