#imageOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.8); /* fond sombre semi-transparent */
    display: none; /* caché par défaut */
    align-items: center;
    justify-content: center;
    z-index: 9999; /* toujours au-dessus de tout */
}

#imageOverlay img {
    max-width: 95vw;
    max-height: 90vh;
    border-radius: 0.5rem;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    transition: all 0.3s ease-in-out;
    cursor: zoom-out;
}

.lc-emoji-wrapper {
    width: 100% !important;
}

.lc-emoji-wrapper input {
    width: 100% !important;
}

.lcep-el-wrap {
    width: 100% !important;
}

input[readonly],
textarea[readonly] {
    background-color: #f5f5f5;
    color: #6c757d;
    cursor: not-allowed;
    border-color: #dcdcdc;
    box-shadow: none;
}

input[readonly]:focus,
textarea[readonly]:focus {
    outline: none;
    box-shadow: none;
    border-color: #dcdcdc;
}

.separator {
  display: flex;
  align-items: center;
  gap: 10px;
}

.separator hr {
  flex: 1;
  border: none;
  border-top: 1px solid #8d8d8d;
}

.separator span {
  white-space: nowrap;
}