.loader {
    width: 50px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 8px solid #0000;
    border-right-color: #ffa50097;
    position: relative;
    animation: l24 1s infinite linear;
}

.loader:before,
.loader:after {
    content: "";
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: inherit;
    animation: inherit;
    animation-duration: 2s;
}

.loader:after {
    animation-duration: 4s;
}

@keyframes l24 {
    100% {
        transform: rotate(1turn)
    }
}

.fc .fc-timegrid-slot {
    height: 2rem;
}

.marker {
    position: absolute;
}

/* .fc-timegrid-event-harness{
    width: 50%;
} */

.fc-timegrid-event-harness:hover {
    z-index: 1000 !important;
}

.fc-timegrid-event-harness:hover>.fc-timegrid-event {
    position: relative;
}

.container-me-calendar {
    height: 100%;
    overflow: hidden;
    transition: all 0.3s;
    font-size: 0.8rem;
}

@media (min-width: 1024px) {
    .container-me-calendar:hover {
        max-height: 200px;
        /* Altura expandida al hacer hover */
        white-space: normal;
        /* Permite salto de línea */
        overflow: visible;
        z-index: 1000;
    }
}

html, body {
  overscroll-behavior-y: none;
}