/* Custom styles to enable vertical scrolling */
.table-wrapper {
    max-height: 1380px; /* Adjust as needed */
    overflow-y: auto;
}
/* .esri-widget{
    margin: 10px
} */

#navbar-title-name{
    display: inline;
    vertical-align: middle;
}

/* #form-map-table-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1800px;
    padding: 0;
    margin: 0;
} */

#map-overlay{
    display: none; /* Initially hidden */
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 1380px;
    pointer-events: auto; /* Allow clicks to pass through */
    z-index: 2; /* Ensure it's above the map */
}

#timeControl_calcite {
    width: 425px;
    padding: 10px;
}

#timeLabel_calcite {
    font-weight: bold;
    font-size: 1rem;
    text-align: center;
}

.error-message {
    color: var(--bs-danger);
}

#map {
    height: 1380px; /* Adjust as needed */
    z-index: 1;
}
.map-container.disabled{
    pointer-events: none;
    opacity: 0.6;
}

.esri-widget.disabled{
    pointer-events: none;
    opacity: 0.8;
}

.time-label {
    align-self: center;
}
.time-label-box {
    pointer-events: none; /* Prevent interaction */
}

#tooltip {
    position: absolute;
    padding: 6px 10px;
    background: rgba(0,0,0,0.7);
    color: white;
    border-radius: 4px;
    pointer-events: none;
    font-size: 14px;
    display: none;
    z-index: 10;
}