body {
    background-image: url("../../MesImagesStandard/backgrnd.jpg");
    
}
/* Conteneur général */
.profil-container {
    max-width: 90%;
    margin: 30px auto;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #dce3ee;
    border-radius: 10px;
    font-family: Arial, sans-serif;
    font-size:1.5rem;
}

/* Navigation retour */
.profil-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px;
    
}

.profil-nav a {
    text-decoration: none;
    color: #1a4a7a;
}

/* Titre */
.profil-container h2 {
    margin-top: 0;
    font-size: 22px;
    color: #1a2a3a;
    text-align: center;
}

/* Avatar */
.profil-container img {
    display: block;
    margin: 10px auto 20px auto;
    max-width: 125px;
    border-radius: 8px;
    border: 1px solid #dce3ee;
}

/* Sections */
.profil-container p,
.profil-container ul {
    
    color: #333;
    line-height: 1.4em;
}

.profil-container strong {
    color: #1a2a3a;
}

/* Liste des stats */
.profil-container ul {
    padding-left: 18px;
}

/* Bouton message */
.btn-msg {
    display: inline-block;
    margin-top: 20px;
    padding: 8px 14px;
    background: #1a4a7a;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    
    transition: background 0.2s;
}

.btn-msg:hover {
    background: #163d66;
}

/* Badge email vérifié / non vérifié */
.badge-ok {
    color: #0a8a0a;
    font-weight: bold;
}

.badge-no {
    color: #b73232;
    font-weight: bold;
}
