.modal-custom-fixed {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #60b0db;
    color: #fff;
    padding: 8px;
    border-radius: 4px;
    width: auto;
    min-width: 280px;
    max-width: 320px;
    z-index: 9999;
    font-size: 13px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.modal-custom-fixed .close-btn {
    position: absolute;
    top: 6px;
    right: 8px;
    background: transparent;
    border: none;
    font-size: 25px;
    color: white;
    cursor: pointer;
}

.modal-box {
    padding: 12px;
    border: 1px solid white;
    border-radius: 4px;
}

.modal-title {
    font-weight: bold;
    margin-bottom: 8px;
    word-wrap: break-word;
    white-space: normal;
}

.modal-custom-fixed .modal-content {
    background-color: transparent;
    border: none;
}

.modal-custom-fixed .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    margin-bottom: 8px;
}

.modal-custom-fixed b {
    font-weight: 600;
    color: #fff;
}

.modal-custom-fixed a {
    color: #fff;
    text-decoration: underline;
}

.modal-custom-fixed .modal-content > div {
    margin-bottom: 6px;
}

.fc-today-button {
    display: none !important;
}

@media only screen and (max-width: 450px) {
    #calendarioEventosViewerMobile { display: block; }
    #calendarioEventosViewer { display: none; }
    .fc-list-item-time { display: none; }
    .fc-list-item-title { width: 100%; }
}

@media only screen and (min-width: 451px) {
    #calendarioEventosViewerMobile { display: none; }
    #calendarioEventosViewer { display: block; }
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: flex-start;
    margin-left: 0 !important;
}

.legend-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.calendar-legend {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(3, auto);
    gap: 6px 18px;
    font-size: 14px;
    margin-left: 20px;
}

.fc-toolbar {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-end;
}

.btn-calendario {
    background: transparent;
    color: #a88905;
    border: none;
    font-weight: 600;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.btn-calendario:hover {
    text-decoration: underline;
    cursor: pointer;
}

.btn-calendario i {
    font-size: 20px;
}

.la-plus-circle-v2:before {
    content: "\f119";
}