/* -------------------------------------------------------------------------- */
/*                                Falcon Button                               */
/* -------------------------------------------------------------------------- */
/* prettier-ignore */
/*# sourceMappingURL=user.css.map */

.fc-toolbar-title{font-size:1.2em !important;}

:root,
[data-bs-theme=light] {
    --fc-button-bg-color: #eef1f5;
    --fc-button-border-color: #e9ecf0;
    --fc-button-hover-bg-color: #d9dbde;
    --fc-button-hover-border-color: #d9dbde;
    --fc-button-active-bg-color: #d9dbde;
    --fc-button-active-border-color: #d9dbde;
    --fc-button-list-day-cushion: var(--falcon-quaternary-bg); 
    --fc-button-text-color: #2c7be5;
}

[data-bs-theme=dark] {
    --fc-button-bg-color: #344050;
    --fc-button-border-color: #344050;
    --fc-button-hover-bg-color: #0b1727;
    --fc-button-hover-border-color: #0b1727;
    --fc-button-active-bg-color: #0b1727;
    --fc-button-active-border-color: #0b1727;
    --fc-button-text-color: #2c7be5;
}

.fc .fc-button {
    font-size: 0.90em !important;
    font-weight: 400;
    line-height: 1.5;
}

.custom-tooltip {
    position: absolute;
    z-index: 9990; /* Valore alto per sovrapporre gli eventi */
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px;
    border-radius: 5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    pointer-events: none; /* Evita che il tooltip interferisca con il mouse */
    width: 200px;
  }
