
    /* Styles pour le formulaire pop-up */
    .popup-form {
        display: none;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        background: white;
        padding: 20px;
        border: 1px solid #ccc;
        z-index: 1000;
    }

    /* Styles pour les statuts des véhicules */
    .status-not-available {
        color: green; /* Couleur pour "pas disponible" */
    }

    .status-available {
        color: red; /* Couleur pour "disponible" */
    }

    .status-rented {
        color: blue; /* Couleur pour "Louée" */
    }

    /* Styles pour les images des membres */
    .member img {
        width: 100%; /* Pour que l'image prenne 100% de la largeur du conteneur parent */
        height: 250px; /* Réglez la hauteur souhaitée du cadre */
        object-fit: cover; /* L'image sera étirée ou compressée pour couvrir la totalité du cadre */
        object-position: center; /* L'image sera centrée verticalement et horizontalement dans le cadre */
    }

    /* Styles pour la modale */
    .modal {
        display: none;
        position: fixed;
        z-index: 1000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        overflow: auto;
        background-color: rgba(0, 0, 0, 0.7); /* Fond semi-transparent */
        padding-top: 100px;
    }

    .modal-content {
        background-color: #fefefe;
        margin: auto;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3); /* Ombre douce */
        width: 400px;
        max-width: 90%; /* Responsive */
        animation: slide-down 0.4s ease-out; /* Animation d'apparition */
    }

    @keyframes slide-down {
        from {
            opacity: 0;
            transform: translateY(-30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Style du bouton de fermeture de la modale */
    .close {
        color: #aaa;
        float: right;
        font-size: 28px;
        font-weight: bold;
        transition: 0.3s;
    }

    .close:hover,
    .close:focus {
        color: #000;
        text-decoration: none;
        cursor: pointer;
    }

    /* Styles pour le formulaire de la modale */
    .form-control {
        width: 100%;
        padding: 10px;
        margin: 10px 0;
        border-radius: 5px;
        border: 1px solid #ccc;
        box-shadow: inset 0px 2px 5px rgba(0, 0, 0, 0.1);
        transition: border 0.3s;
    }

    .form-control:focus {
        border-color: #ff4d4d; /* Couleur accentuée au focus */
        outline: none;
    }

    /* Styles pour le bouton */
    .btn {
        width: auto;
        padding: 8px;
        background-color: #ff4d4d;
        border: none;
        border-radius: 5px;
        color: white;
        font-size: 16px;
        cursor: pointer;
        transition: background-color 0.3s;
    }

    .btn:hover {
        background-color: #ff3333; /* Plus foncé au hover */
    }

    /* Checkbox */
    .checkbox {
        display: flex;
        align-items: center;
    }

    .checkbox input[type="checkbox"] {
        margin-right: 10px;
    }

    /* Footer de la modale */
    .modal-footer p {
        margin-top: 20px;
        font-size: 14px;
    }

    .modal-footer a {
        color: #ff4d4d;
        text-decoration: none;
        transition: color 0.3s;
    }

    .modal-footer a:hover {
        color: #ff3333;
    }

    /* Responsive */
    @media screen and (max-width: 600px) {
        .modal-content {
            width: 90%;
        }
    }

