.info-panel {
    top: 60px;

}

.info-panel-box {
    /* background: #f9f9f9; */
    border: 1px solid #eee;
    border-radius: 10px;
    max-width: 480px;
    margin: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}


.info-panel {
    position: absolute;
    top: 85px;
    left: 20px;
    width: 450px;
    max-height: calc(100vh - 105px);
    overflow-y: auto;
    z-index: 999;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .05);
}

.info-panel::-webkit-scrollbar {
    display: none
}

.info-panel .start,
.info-panel .end {
    padding: 12px 10px;
    border-radius: 10px;
    background: rgba(250, 173, 8, 0.15);
    font-weight: 500;
    transition: 0.3s ease;
    cursor: pointer;
    border: 1px solid transparent;
}

.info-panel .start.active,
.info-panel .end.active {
    background: var(--brand-accent);
    color: white;
    border-color: var(--brand-accent);
}


.modal-backdrop {
    z-index: 2;
}


.top-header {
    position: absolute;
    left: 20px;
    z-index: 999;
    width: 450px;
    border-radius: 20px;
    margin-top: 20px;
    background: var(--brand-accent);
    padding-bottom: 55px !important;
    background-image: var(--gradient-brand);

}


html,
body,
.explore-page {
    height: 100%;
    margin: 0;
    overflow: hidden
}

#map {
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0
}


.search-addr {
    position: relative;
}


.search-addr input {
    /* background: rgba(142, 89, 89, 0.07); */
    /* padding-bottom: 11px; */
    padding-left: 50px;
    /* box-sizing: border-box; */
    /* border-radius: 10px; */
    /* font-size: 16px; */
}

.search-addr input:focus {
    border: 1px solid var(--brand-accent);
}

.search-addr button {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    padding: 0;
    background: transparent;
    border: 0;
    color: #afafaf;
}

.search-addr input::placeholder {
    color: #afafaf;
    opacity: 1;
}

#results {
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
    position: absolute;
}

.prediction-item {
    display: flex;
    align-items: flex-start;
    padding: 12px 16px;
    gap: 12px;
    cursor: pointer;
    transition: background 0.2s ease-in-out;
}

.prediction-item:hover {
    background-color: #f9f9f9;
}

.prediction-item .icon {
    font-size: 16px;
    margin-top: 3px;
    flex-shrink: 0;
}

.prediction-item .info {
    flex: 1;
    min-width: 0;
}

.prediction-item .main {
    font-weight: 600;
    font-size: 15px;
    color: #1a202c;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.prediction-item .secondary {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.3;
    max-height: 2.6em;
    /* optional: two lines max */
    overflow: hidden;
    margin-top: 5px;
}

.time-nav-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: var(--surface-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    transition: all 0.2s ease;
}

.time-nav-btn:hover:not(:disabled) {
    background: var(--brand-primary);
    color: var(--text-inverse);
    transform: scale(1.05);
}

.time-nav-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    box-shadow: none;
}

.time-slots {
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
    scroll-behavior: smooth;
}

.time-slots::-webkit-scrollbar {
    display: none;
}