.background-content-orange {
    background-image: url('../images/icon-vhr/bg-img.png');
    background-size: cover;
    background-repeat: no-repeat;
    height: 100vh;
}

.background-content-white {
    background-color: #FFFFFF;
    height: 100vh;
}

.content-auth-center {
    height: 100vh;
    /* Pour couvrir la hauteur de l'écran */
    display: flex;
    justify-content: center;
    /* Pour centrer horizontalement */
    align-items: center;
    /* Pour centrer verticalement */
    flex-direction: column;
    /* Pour que les éléments soient empilés verticalement */
}

.div-content-data {
    margin: 50px 100px 10px 100px;
    /* Marge importante à gauche et à droite, en haut et en bas */
    text-align: left;
    /* Pour centrer le texte horizontalement */
    border: black;
}

.body-class {
    margin: 0;
    padding-top: 0;
    font-family: 'DM Sans';
    font-size: 14px;
}

.titre-color {
    color: #000000;
    font-size: 50px;
}

.default-text-class {
    color: #000000;
    font-size: 24px;
}

input.form-control.custom-input {
    border: 1px solid #FF6000;
    /* Bordure de couleur #FF6000, d'épaisseur 1px */
    color: #00000080;
    /* Couleur de l'input #FF60000D */
    border-radius: 5px;
    /* Rayon de bordure de 5% */
    background-color: #FF60000D;
}

.pdfcanvas {
    border: 1px solid #FF6000;
    /* Bordure de couleur #FF6000, d'épaisseur 1px */
    color: #00000080;
    /* Couleur de l'input #FF60000D */
    border-radius: 5px;
    /* Rayon de bordure de 5% */
    background-color: #FF60000D;
}

select.form-control.custom-input {
    border: 1px solid #FF6000;
    /* Bordure de couleur #FF6000, d'épaisseur 1px */
    color: #00000080;
    /* Couleur de l'input #FF60000D */
    border-radius: 5px;
    /* Rayon de bordure de 5% */
    background-color: #FF60000D;
}

textarea.form-control.custom-input {
    border: 1px solid #FF6000;
    /* Bordure de couleur #FF6000, d'épaisseur 1px */
    color: #00000080;
    /* Couleur de l'input #FF60000D */
    border-radius: 5px;
    /* Rayon de bordure de 5% */
    background-color: #FF60000D;
}

.select2 {
    border: 1px solid #FF6000;
    /* Bordure de couleur #FF6000, d'épaisseur 1px */
    color: #00000080;
    /* Couleur de l'input #FF60000D */
    border-radius: 5px;
    /* Rayon de bordure de 5% */
    background-color: #FF60000D;
}

.select2-multiple {
    border: 1px solid #FF6000;
    /* Bordure de couleur #FF6000, d'épaisseur 1px */
    color: #00000080;
    /* Couleur de l'input #FF60000D */
    border-radius: 5px;
    /* Rayon de bordure de 5% */
    background-color: #FF60000D;
}

.select2-search input {
    background-color: #00f;
}


label.custom-label {
    color: #000000;
    font-size: 18px;
}

a.custom-a-link {
    text-align: right;
}

.forgot-password-link {
    color: #FF6000;
}

.forgot-password-link:hover {
    color: #FF6000;
    /* Couleur du lien au survol */
}

button.custom-btn {
    color: #FFFFFF;
    background-color: #FF6000;
    margin-top: 30px;
    margin-bottom: 30px;
}

button.custom-btn-right {
    color: #FFFFFF;
    background-color: #FF6000;
    margin-top: 5px;
    margin-bottom: 30px;
    text-align: right;
}


button.custom-btn-black {
    color: #FFFFFF;
    background-color: #000000;
    margin-top: 30px;
    margin-bottom: 30px;
}

button.custom-btn-green {
    color: #FFFFFF;
    background-color: #0cc745;
    margin-top: 30px;
    margin-bottom: 30px;
}

/* Styles personnalisés */
.site-header {
    background-color: #f8f9fa;
    padding: 15px 0;
}

.site-header img {
    max-width: 100%;
    height: auto;
}

.user-photo {
    width: 40px;
    height: 40px;
}


.lab-thumb .thumb-inner {
    display: flex;
    flex-wrap: wrap;
}

.lab-thumb .thumb-inner .thumb-img {
    overflow: hidden;
}

.lab-thumb .thumb-inner {
    align-items: center;
}

.lab-thumb .thumb-inner .thumb-content .custom-select select {
    border-radius: 2px;
}

.lab-thumb .thumb-inner .thumb-img {
    margin-right: 15px;
}

.lab-thumb {
    padding: 10px 30px;
    padding-top: 15px;
}

.lab-thumb .thumb-inner .thumb-img {
    width: 60px;
    height: 60px;
    -webkit-border-radius: 100%;
    -moz-border-radius: 100%;
    -ms-border-radius: 100%;
    -o-border-radius: 100%;
    border-radius: 100%;
}

.lab-thumb .thumb-inner .thumb-content .custom-select select {
    font-family: "icoFont" !important;
    outline: none;
    border: none;
    background: #f9f9f9 !important;
    padding: 3px 10px;
}

.lab-thumb .thumb-inner .thumb-content .custom-select select option {
    font-family: "icoFont" !important;
}

ul.post-add-icons li {
    list-style: none;
    float: left;
    margin-right: 35px;
}

.icon-container {
    position: relative;
    display: inline-block;
}

.material-icons.mat-size-60 {
    font-size: 60px !important;
    display: block;
}

.material-icons.mat-del-icon {
    color: #FF6000;
    position: absolute;
    top: 0;
    right: 0;
    display: none;
}

.icon-container:hover .mat-del-icon {
    display: block;
    cursor: pointer;
}

#pdfViewer {
    width: 10%;
    /* Largeur maximale */
    height: 160px;
    max-width: 800px;
    /* Largeur maximale fixe */
    margin: 20px auto;
    /* Centré horizontalement avec une marge */
}

#pdfCanvas {
    display: block;
    /* Afficher en tant que bloc */
    margin: 0 auto;
    /* Centré horizontalement */
    background-color: #f0f0f0;
    /* Couleur de fond */
    height: 150px;
}

.pagination {
    list-style: none;
    padding: 10px;
    display: flex;
    justify-content: center;
}

.pagination li {
    margin: -5px 5px 0 5px;
}

.pagination li a,
.pagination li span {
    display: block;
    padding: 8px 12px;
    color: black;
    text-decoration: none;
}

.pagination li a:hover {
    background-color: black;
    border-color: black;
    color: white;
}

.pagination li.active span {
    background-color: #FF6000;
    color: white;
    border-color: #FF6000;
}

.form-group.has-error label {
    color: #dd4b39;
}

.form-group.has-error .form-control {
    border-color: #dd4b39;
    box-shadow: none;
}

.form-group.has-error .help-block {
    color: #dd4b39;
}

.profile-top-header {
    background-color: white;
    border-radius: 10px 10px 0px 0px;
}

.profile-top-header .profile-couverture-thumb {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

.profile-top-header .profile-couverture-thumb img {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
    display: block;
    height: 100%;
}

.profile-top-header .profile-couverture-thumb .icon-circle {
    position: absolute;
    top: 50%;
    /* Position in the middle vertically */
    left: 90%;
    /* Position in the middle horizontally */
    transform: none;
    background-color: rgba(0, 0, 0, 1);
    /* Background color with transparency */
    border-radius: 50%;
    /* Makes the background a circle */
    padding: 15px;
    /* Adjust size of the circle */
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-top-header .profile-couverture-thumb .icon-circle i {
    color: white;
    /* Icon color */
    font-size: 2rem;
    /* Icon size */
}

.profile-top-header .profile-picture-block {
    margin-left: 50px;
    margin-top: -120px;
}

.profile-top-header .profile-picture-block .profile-picture {
    border-radius: 100%;
    width: 220px;
    height: 220px;
    display: inline-block;
}

.profile-top-header .profile-picture-block .profile-picture img {
    border-radius: 50%;
}

.profile-top-header .profile-picture-block .profile-name {
    display: inline-block;
    color: white;
    margin-left: 30px;
}

.profile-top-header .profile-picture-block .profile-name h4 {
    font-weight: 700;
}

.profile-top-header .profile-text-section .profile-menu {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    padding: 8px;
}

.profile-top-header .profile-text-section .profile-menu li {
    list-style: none;
}

.profile-top-header .profile-text-section .profile-menu-action-btn .btn.friend-request {
    color: white;
    background-color: #FF6000;
    border-radius: 10px;
}

.profile-top-header .profile-text-section .profile-menu-action-btn .btn.send-message {
    color: white;
    background-color: #000000;
    border-radius: 10px;
}

.profile-top-header .profile-text-section .profile-menu li a.active,
.profile-top-header .profile-text-section .profile-menu li a.active:hover,
.profile-top-header .profile-text-section .profile-menu li a:hover {
    color: #FF6000;
}

.profile-top-header .profile-text-section .profile-menu li a {
    font-size: 14px;
    font-weight: 700;
    color: #9a9fbf;
    display: block;
}

.profile-top-header .profile-text-section {
    margin-bottom: 0px;
    margin-top: -50px;
    margin-left: 220px;
    padding-bottom: 50px;
}

.profile-top-header .profile-text-section .profile-menu-action-btn {
    margin-bottom: 0;
    display: flex;
    align-items: right;
    justify-content: space-evenly;

}

/*
DEBUT RADIO
*/
.radio-button-group {
    display: flex;
    gap: 10px;
}

.radio-button-group input[type="radio"] {
    display: none;
}

.radio-button-group label {
    display: inline-block;
    padding: 10px 20px;
    background-color: white;
    border: 2px solid #FF6000;
    border-radius: 5px;
    cursor: pointer;
    color: #FF6000;
    font-size: 16px;
    transition: background-color 0.3s, color 0.3s;
}

.radio-button-group input[type="radio"]:checked+label {
    background-color: #FF6000;
    color: white;
}

/*
FIN RADIO
*/

/*
    DEBUT - PUCE POUR EMAIL ET NUMERO VALIDE
*/

/* Style de base pour le cercle */
span.circle-green,
span.circle-red,
span.circle-default {
    display: inline-block;
    width: 10px;
    /* Taille du cercle */
    height: 10px;
    border-radius: 50%;
    /* Rend l'élément circulaire */
}

/* Cercle vert si l'utilisateur est vérifié */
span.circle-green {
    background-color: green;
}

/* Cercle rouge si l'utilisateur n'est pas actif */
span.circle-red {
    background-color: red;
}

/* Style par défaut si aucune des conditions n'est remplie */
span.circle-default {
    background-color: gray;
    /* Vous pouvez choisir une autre couleur si nécessaire */
}

/*
    FIN - PUCE POUR EMAIL ET NUMERO VALIDE
*/


.hotel-card {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 10px;
    margin-bottom: 10px;
    height: 114px;
    background-color: #FFFFFF;
}

.hotel-image {
    width: 65px;
    height: 65px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 15px;
    margin-top: 50px;
    margin-bottom: 50px;
    margin-left: 15px;
}

.hotel-info {
    flex: 1;
    color: #000000;
    /* Texte en gras */
    font-size: 20px;
    /* Augmente la taille de la police */
}

.hotel-link {
    text-align: right;
}

.info-type-lieu {
    flex: 1;
    color: #FF6000;
    /* Texte en gras */
    font-size: 30px;
    /* Augmente la taille de la police */
}

.vhr-page-title {
    flex: 1;
    color: #000000;
    /* Texte en gras */
    font-size: 40px;
    /* Augmente la taille de la police */
    margin-top: 20px;
    float: left;
}

.cover {
    width: 100%;
    margin: 0 auto;
    height: 150px;
    position: relative;
    display: block;
    z-index: 1;
    overflow: hidden;
    margin-top: 5px;
    max-height: 100%;
    border-radius: 5px;
    padding: 15px;
}

.cover_img {
    width: 100%;
    object-fit: cover;
    object-position: center top;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'DM Sans';
}

.page-header {
    text-align: center;
    margin-top: 20px;
}

.edit-mode {
    background-color: #FF600033;
    color: #FF6000;
    text-align: center;
    padding: 5px;
    font-family: 'DM Sans';
}

.hotel-title {
    font-size: 2em;
    margin-top: 20px;
    color: #000000;
}

.edit-icon {
    background: none;
    border: none;
    color: #FF6000;
    cursor: pointer;
}

.add-icon {
    background: none;
    border: none;
    color: #FF6000;
    cursor: pointer;
}

.hotel-description {
    color: #000000;
    text-emphasis: none;
    line-height: 1.6;
    padding: 0px 15px 0px 15px;
}

.rooms-section {
    text-align: left;
}

.rooms-section h2 {
    color: #FF6000;
    margin-bottom: 10px;
}

.add-room-button {
    display: inline-block;
    padding: 10px 20px;
    color: #FF6000;
    background-color: white;
    border: 2px solid #FF6000;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    transition: 0.3s;
}

.add-room-button:hover {
    background-color: #FF6000;
    color: white;
}


.edit-button {
    position: absolute;
    bottom: 10px;
    right: 25px;
    background-color: #FF6000;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
}

.edit-button:hover {
    background-color: #FF6000;
}

.image-chambre {
    height: 200px;
    object-fit: cover;
}

.image-plat {
    height: 200px;
    object-fit: cover;
}

.card-description {
    color: #000000;
    font-size: 0.9rem;
    height: 50Px;
}

.card-description-orange {
    color: #FF6000;
    font-size: 0.9rem;
    height: 50Px;
}

@media (min-width: 576px) {
    .cover {
        height: 225px;
    }
}

@media (min-width: 768px) {
    .cover {
        height: 270px;
    }
}



.album a {
    float: left;
    margin-right: 10px;
    width: 170px;
    height: auto;
    margin-bottom: 10px;
    margin-top: 15px;
}

.album a img,
.album a video {
    width: 100%;
}

.vhr-quarter-btn-outline-warning {
    border-color: #ff6600;
    color: #ff6600;
    border-radius: 5px;
}

.vhr-quarter-user-list {
    border-radius: 8px;
}

.vhr-quarter-user-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.vhr-quarter-user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.vhr-quarter-user-name {
    font-size: 1.1rem;
    font-weight: bold;
    color: #333;
}

.vhr-quarter-btn-link {
    font-size: 0.9rem;
}


.vhr-quarter-actu-post-card,
.vhr-quarter-actu-create-post {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
}

.vhr-quarter-actu-create-post-input {
    background-color: #f0f2f5;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    width: 100%;
    color: #6c757d;
}

.vhr-quarter-actu-post-card {
    position: relative;
}

.vhr-quarter-actu-user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.vhr-quarter-actu-user-info h5 {
    font-size: 1rem;
    font-weight: bold;
    margin: 0;
}

.vhr-quarter-actu-user-info span {
    font-size: 0.875rem;
    color: #6c757d;
}

.vhr-quarter-actu-post-content {
    margin-top: 0.75rem;
    font-size: 1rem;
    color: #333;
}

.vhr-quarter-actu-badge {
    display: inline-block;
    top: 1rem;
    right: 1rem;
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    font-weight: bold;
    border-radius: 5px;
    color: #ffffff;
}

.vhr-quarter-actu-badge-electricity {
    background-color: #ff6000;
    color: #fefefe;
}

.vhr-quarter-actu-badge-urgent {
    background-color: #ff6000;
}

.vhr-quarter-actu-actions {
    margin-top: 0.75rem;
    color: #6c757d;
}

.vhr-quarter-actu-action-btn {
    font-size: 0.9rem;
    font-weight: bold;
    color: #6c757d;
    margin-right: 15px;
}



.vhr-quarter-lieu-container {
    display: flex;
    flex-direction: column;
    padding: 20px;
}

.vhr-quarter-lieu-title {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.vhr-quarter-lieu-category {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ff6000;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.quarter-user-link {
    font-weight: bold;
    color: #ff6000;
}

.quarter-user-link:hover {
    font-weight: bold;
    color: #000000;
}

.vhr-quarter-lieu-card {
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.vhr-quarter-lieu-card .quartier-card-image {
    height: 155px;
}

.vhr-quarter-lieu-card img {
    width: 100%;
    height: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.vhr-quarter-lieu-card-body {
    padding: 1rem;
}

.vhr-quarter-lieu-card-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
    margin: 0 0 0.5rem 0;
}

.vhr-quarter-lieu-card-text {
    font-size: 0.9rem;
    color: #666;
}

.vhr-quarter-lieu-btn {
    background-color: #ff6000;
    color: #ffffff;
    border-radius: 5px;
    padding: 0.5rem 1rem;
    font-weight: bold;
    margin-top: 1rem;
    text-decoration: none;
}

.vhr-quarter-lieu-btn:hover {
    background-color: #ff5700;
    color: #ffffff;
    text-decoration: none;
}

.list-commodites {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin: 0;
    height: calc(3 * 2.5em);
    /* Limite à 3 lignes */
    overflow-y: auto;
    /* Active le défilement vertical */
    scrollbar-width: thin;
    /* Minimise la largeur du scroll sur Firefox */
}

.list-commodites li {
    display: flex;
    align-items: center;
    margin: 5px 10px;
    white-space: nowrap;
    color: #FF6000;
}

.vhr-panier-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.vhr-panier-item:last-child {
    border-bottom: none;
}

.vhr-panier-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 1px solid #ddd;
}

.vhr-panier-item-name {
    font-weight: bold;
}

.vhr-panier-item-price {
    margin-bottom: 10px;
}

.vhr-panier-dropdown-menu {
    width: 300px;
    max-height: 400px;
    overflow-y: auto;
}

.business-card {
    background: #ffffff;
    border: 1px solid #e6e6e6;
    border-radius: 24px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

/* Haut */
.business-card-top {
    display: flex;
    align-items: center;
}

/* Image */
.business-card-image {
    width: 96px;
    height: 96px;
    border-radius: 20px;
    overflow: hidden;
    flex-shrink: 0;
    margin-right: 24px;
}

.business-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Texte */
.business-card-content {
    flex: 1;
}

.business-card-title {
    font-size: 30px;
    font-weight: 700;
    color: #222;
    margin: 0;
}

/* Zone boutons */
.business-card-actions {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

/* Boutons */
.business-card-action-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 18px;
    border-radius: 14px;
    background: #f4f4f4;
    border: none;
    color: #333;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s ease, transform 0.15s ease;
}

.business-card-action-btn i {
    font-size: 18px;
}

.business-card-action-btn:hover {
    background: #ebebeb;
    transform: translateY(-1px);
}

/* Bloc statistique (Commandes / Vues) */
.stat-block {
    min-height: 140px;
    /* clé de l’alignement */
}

/* Titre (icône + texte) */
.stat-title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

/* Valeur principale */
.stat-value {
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 6px;
}

/* Texte d’évolution */
.stat-evolution {
    font-size: 14px;
}