.prediction-menu { position: relative; }

.prediction-menu-toggle {
    border: 0;
    background: transparent;
    font-family: inherit;
    cursor: pointer;
}

.prediction-menu-panel {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 100;
    width: 250px;
    max-height: min(65vh, 460px);
    overflow-y: auto;
    border: 1px solid var(--gray-border, #e3e6e4);
    border-radius: 8px;
    background: var(--gray-card, #fff);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .24);
}

.prediction-menu.open .prediction-menu-panel { display: block; }

.prediction-menu-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--gray-border, #e3e6e4);
    color: var(--text-dark, #111815);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.prediction-menu-link:last-child { border-bottom: 0; }
.prediction-menu-link:hover,
.prediction-menu-link.active { background: var(--green-light, #e9f5ee); color: var(--green-dark, #004d2b); }
.prediction-menu-arrow { color: var(--green, #087a45); font-size: 18px; }

@media (max-width: 800px) {
    .prediction-menu-panel {
        position: fixed;
        top: 78px;
        left: 8px;
        width: min(300px, calc(100vw - 16px));
    }
}
