@charset "UTF-8";

.calendario .fc-title {
    white-space: normal;
}

.calendario .fc-time {
    color: #FFFFFF;
}

.select2-results__option.fixed-option {
    font-weight: bold;
    background-color: #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 1;
}

/* Impedisci alla select di espandersi per mostrare le voci selezionate */
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {
    display: none; /* Nasconde i tag delle opzioni selezionate */
}
  
.select2-container--default .select2-selection--multiple {
    height: 38px; /* Imposta un'altezza fissa per la select */
    overflow: hidden; /* Nascondi l'overflow */
    white-space: nowrap;
}
  
.select2-container--default .select2-selection--multiple .select2-selection__choice {
    display: none; /* Nascondi i singoli "pill" delle voci selezionate */
}

.select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    height: 32px;
}

.form-label {
  padding-top: 0.6rem;
  font-weight: bold;
}
  
.form-small {
  font-size: 90%;
  font-weight: 400;
  margin-bottom: 2rem;
  display: block;
}

.form-space-btm {
  margin-bottom: 15px;
}

.form-control {
  background-color: #f3f3f3;
}

.form-group {
  margin-bottom: 0;
}

.alert-warning {
  /* color: #acacac; */
}

/* Forza l'altezza fissa per il container */
.select2-container-fixed-height .select2-selection--multiple {
  min-height: 38px !important;
  height: 38px !important;
  overflow: hidden;
}

/* Mantiene visibile la freccia dropdown */
.select2-container-fixed-height .select2-selection--multiple:after {
  content: '';
  position: absolute;
  right: 10px;
  /* top: 50%; */
  /* transform: translateY(-50%); */
  border-top: 5px solid #999;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  pointer-events: none;
}

/* Allinea correttamente i tag */
.select2-container-fixed-height .select2-selection__rendered {
  display: flex !important;
  flex-wrap: nowrap !important;
  white-space: nowrap;
  overflow: hidden;
  padding-right: 20px !important; /* Spazio per la freccia */
}

/* Stile per i tag selezionati */
.select2-container-fixed-height .select2-selection__choice {
  margin-top: 3px !important;
  margin-bottom: 3px !important;
  white-space: nowrap;
}