/* Custom styles for the document and contact lists */
.table tr.selected .view-document i {
    color: white !important;
}

.table tr.selected i.contact-physique {
    color: white !important;
}

.table tr.selected i.mdi-dots-vertical {
    color: white !important;
}

.table td {
    padding: 0.75rem !important;
    vertical-align: middle !important;
}

#liste_documents thead tr, #liste_contacts thead tr {
    vertical-align: middle !important; 
}

.dropdown-item {
    padding: 0.25rem 1.5rem !important;
    cursor: pointer;
}
.dropdown-item:hover {
    background-color: #f8f9fa !important;
}
.dropdown-item:focus {
    background-color: #f8f9fa !important;
}
.dropdown-item:active {
    background-color: #f8f9fa !important;
}
.dropdown-item:focus, .dropdown-item:active {
    outline: none !important;
}

/* Custom style des users sélectionnés dans le tchat */
.user-tchat.selected {
    background-color: #536de6 !important; /* #6391c4 !important; */ 
    border-radius: 8px;
    box-shadow: 0 0 0 2px #536de6;
}

html[data-bs-theme="dark"] .user-tchat.selected,
html[data-bs-theme="dark"] .user-tchat.selected * ,
html[data-bs-theme="light"] .user-tchat.selected,
html[data-bs-theme="light"] .user-tchat.selected * {
    color: white !important;
    /*color: #37404a !important;*/
}

#tchat-messages-scroll {
  height: calc(100vh - 320px); /* Ajuste 320px selon la hauteur de ton header + footer + paddings */
  max-height: none;
  min-height: 0;
}

.no-resize {
  resize: none;
}