.media-flex{

    gap: 5px;
    padding: 5px;
    border-radius: 5px;
    margin-top: 5px;
}
.temoignage-card{
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #999;
    margin: 20px;
    /*width: 600px;*/
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
	text-align: justify;
}
.temoignage-card p{
    max-width: 100%;
	font-size: 0.9rem;
}
.nomposte{
    background-color: #555;
    border-radius: 5px;
    color: rgb(218, 222, 143);
    font-weight: 600;
    font-size: 0.9em;
}
hr{
    margin: 6px 0 5px 0;
}
.temoignages-flex{
    /*display: flex;*/
    /*width: 600px;*/
}
@media (max-width: 768px) {
    .temoignage-card{
        width: 100%;
    }
    
    .temoignages-flex{
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
    }
}
.modal {
    position: fixed;
    z-index: 1000;
    left: 0; top: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}
.formmodal {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 20px;
    margin: 20px auto;
    /*max-width: 500px;*/
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}
.formmodal input, .formmodal select, .formmodal textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #bbb;
    border-radius: 5px;
    font-size: 14px;
    box-sizing: border-box;
    transition: border-color 0.2s;
}
.checkbox-inline {
    display: flex;
    gap: 8px; /* espace entre la case et le texte */
    font-size: 14px;
}
.checkbox-inline input[type="checkbox"] {
    width: 16px;
    height: 16px;
}
.formmodal button {
    display: inline-block;
    background: #8db7e3;
    color: #000000;
    padding: 5px 5px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
    font-weight: 700;
}
.formmodal button:hover {
    background: #0056b3;
    color: #ffffff;
}
.modal-content {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    position: relative;
}
.close-btn {
    position: absolute;
    top: 10px; right: 15px;
    cursor: pointer;
    font-size: 20px;
}
