
/* Liste des Médecins */


.title-header h2{
    text-align: center;
    font-size: 1.875rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 1rem;
    margin-top: 1rem;
}
.title-header{
    margin-top: 80px ;
    text-align: center;
    font-size: 1.875rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 2rem;
    margin-right: 20px;
    margin-left: 20px;
    display: flex;
    align-items: center;         /* aligne verticalement */
    justify-content: space-between; /* espace entre le titre et le bouton */
    flex-wrap: wrap; 
}
.search-geolocate {
    background-color: #007BFF;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.25s;
    margin-top: 10px; /* utile pour mobile */
}

.search-geolocate:hover {
    background-color: #0056b3;
}

/* 📱 Responsive mobile */
@media (max-width: 600px) {
    .title-header {
        flex-direction: column;    /* passe en colonne */
        align-items: flex-start;   /* aligne à gauche */
    }

    .search-geolocate {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
    }

    .search-titre {
        margin-bottom: 8px;
    }
}


.categorie-specialite {
    width: 50%;
    margin-left: 30%;
    padding: 10px 14px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 1rem;
    margin-bottom: 30px;
    background: #f9fafb;
    transition: all 0.2s ease;
    appearance: none; 
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px; 
    cursor: pointer;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    /* max-width: 900px; */
    margin: auto;
}

.medecin-card {
    background: white;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.medecin-img {
     width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #1d4ed8;
    background: #fff;
    box-shadow: 0 2px 12px rgba(29,78,216,0.10);
    transition: transform 0.2s;
}

.view-profile {
    background-color: #2563eb;
    color: white;
    padding: 8px 12px;
    border: #2563eb;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

.view-profile:hover {
    background-color: #2563eb;
}

/* Responsive */
@media (max-width: 600px) {
    .grid-container {
        grid-template-columns: 1fr;
    }
    
    .categorie-specialite {
    width: 80%;
    margin-left: 10%;
}
}
