/* Info popup styles */
.info-popup {
    position: absolute;
    width: 288px;
    max-height: 288px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    padding: 1rem;
    overflow-y: auto;
    z-index: 9999;
}

/* Default: below button */
.info-popup.popup-bottom {
    top: 100%;
    margin-top: 0.5rem;
}

/* Above button */
.info-popup.popup-top {
    bottom: 100%;
    margin-bottom: 0.5rem;
}

/* Horizontal positioning */
.info-popup.popup-right {
    left: 100%;
    right: auto;
    margin-left: 0.5rem;
}

.info-popup.popup-left {
    right: 100%;
    left: auto;
    margin-right: 0.5rem;
}

.info-popup h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.info-popup p {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.5;
}

/* Scrollbar styling for popup */
.info-popup::-webkit-scrollbar {
    width: 6px;
}

.info-popup::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 3px;
}

.info-popup::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.info-popup::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}