* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.day-note {
    font-size: 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    text-align: center;
    max-width: 90%;
    margin-top: 2px;
}

.conteneur-principal-new {
    width: 80%;
    margin: 10px auto;
    padding: 5px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.sous-conteneur-new {
    border: 1px solid #9E9E9E;
    border-radius: 0px;
    margin: 0;
    padding: 5px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    min-width: 250px;
    min-height: auto;
}

.sous-conteneur-new:first-child {
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.model-photo {
    max-width: 100%;
    height: auto;
    display: block;
	justify-content: center;
}

.availability-calendar {
    width: 100%;
    height: 100%;
    padding: 5px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
    font-weight: bold;
    color: #3498db;
    font-size: 16px;
}

.calendar-nav {
    display: flex;
    gap: 8px;
}

.calendar-nav button {
    background: none;
    border: none;
    color: #3498db;
    cursor: pointer;
    font-size: 1em;
    padding: 4px 8px;
}

.calendar-days {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    justify-content: flex-start;
}

.calendar-day {
    width: calc(100% / 7 - 3px);
    height: 42px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    border-radius: 0px;
    cursor: pointer;
    position: relative;
    padding: 2px;
    box-sizing: border-box;
    flex-shrink: 0;
    min-width: 35px;
}

.calendar-day.available {
    background-color: #d4edda;
    color: #28a745;
}

.calendar-day.unavailable {
    background-color: #f8d7da;
    color: #721c24;
}

.calendar-day.today {
    font-weight: bold;
    border: 1px solid #3498db;
}

.calendar-day.empty {
    visibility: hidden;
}

.legend {
    display: flex;
    justify-content: space-between;
    margin-top: 8px;
    font-size: 11px;
}

.sous-conteneur-new:last-child {
    align-items: flex-start;
}

.conteneur-infos {
    width: 100%;
    padding: 5px;
    display: flex;
    flex-direction: column;
}

.conteneur-infos h3 {
    color: #3498db;
    margin-bottom: 8px;
    font-size: 18px;
    text-align: center;
}

.presentation-text {
    font-size: 16px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #555;
}

.info-block {
    margin-bottom: 8px;
    width: 100%;
    display: flex;
}

.info-block .label {
    font-weight: bold;
    color: #555;
    font-size: 14px;
    white-space: nowrap;
    margin-right: 0;
}

.info-block .value {
    color: #333;
    font-size: 14px;
    line-height: 1.4;
    flex: 1;
    margin-left: 0;
    padding-left: 5px;
}

.social-container {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    flex-wrap: nowrap;
}

.social-item a {
    font-size: 28px;
    color: #333;
    transition: color 0.3s;
}

.social-item a:hover {
    color: #007bff;
}

.voir-albums-btn {
    display: block;
    background-color: #3498db;
    color: white;
    padding: 10px 15px;
    border-radius: 0px;
    text-decoration: none;
    font-size: 14px;
    margin-top: auto;
    width: 100%;
    text-align: center;
    transition: background-color 0.2s;
}

.voir-albums-btn:hover {
    background-color: #2980b9;
}

.conteneur-secondaire {
    width: 90%;
    margin: 10px auto;
    padding: 5px;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.sous-conteneur-secondaire {
    border: 1px solid #9E9E9E;
    border-radius: 0px;
    margin: 0;
    padding: 5px;
    flex: 1;
    min-width: 250px;
    min-height: auto;
}

.sous-conteneur-secondaire h3 {
    color: #3498db;
    margin-bottom: 8px;
    font-size: 16px;
    text-align: center;
}

.button-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 10px;
}

.btn {
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    font-size: 13px;
}

.retour-btn {
    background-color: #4CAF50;
    color: white;
}

.avis-btn {
    background-color: #FF9800;
    color: white;
}

.signaler-btn {
    background-color: #f44336;
    color: white;
}

@media (max-width: 768px) {
    .conteneur-principal-new {
        width: 100%;
        flex-direction: column;
    }
    .sous-conteneur-new {
        width: 100% !important;
        flex: none !important;
        min-height: auto;
        margin-bottom: 10px;
    }
    .conteneur-secondaire {
        width: 100% !important;
        flex-direction: column;
    }
    .sous-conteneur-secondaire {
        width: 100% !important;
        min-width: 100% !important;
        margin-bottom: 10px;
    }
}

@media (max-width: 360px) {
    .calendar-day {
        width: calc(100% / 5 - 3px);
        min-width: 30px;
        font-size: 11px;
    }
    .day-note {
        font-size: 8px;
    }
}

.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.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 5px;
    position: relative;
}

.close {
    color: #aaa;
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #333;
}

.modal h2 {
    color: #d9534f;
    margin-bottom: 15px;
    font-size: 18px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input[type="email"],
.form-group textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group textarea {
    min-height: 100px;
    resize: vertical;
}

.modal-buttons {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 20px;
}

.message {
    padding: 10px;
    margin: 15px 0;
    border-radius: 4px;
    display: none;
}

.message.success {
    display: block;
    background-color: #d4edda;
    color: #155724;
    text-align: center;
}

.message.error {
    display: block;
    background-color: #f8d7da;
    color: #721c24;
    text-align: center;
}
       /* Style pour la photo de profil */
        .profile-pictures-container {
            width: 100%;
            text-align: center;
            margin: 0 0 0 0;
            padding: 0;
        }
        .profile-picture {
            max-height: 350px;
            width: auto;
            border: none;
            margin: 0;
            border-radius: 0;
            object-fit: contain;
        }