
/* Custom Popup Styles */
.custom-popup-container {
    position: relative;
    display: inline-block;
}

.custom-popup-content {
    visibility: hidden;
    width: 300px;
    background-color: #ffffff;
    color: #333333;
    text-align: left;
    border-radius: 8px;
    padding: 15px;
    position: absolute;
    z-index: 9999;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transition: opacity 0.3s, visibility 0.3s;
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.5;
    border: 1px solid #e5e7eb;
}

/* Arrow */
.custom-popup-content::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #ffffff transparent;
}

.custom-popup-show {
    visibility: visible;
    opacity: 1;
}

.custom-popup-item {
    margin-bottom: 8px;
}

.custom-popup-item:last-child {
    margin-bottom: 0;
}

.custom-popup-label {
    font-weight: 600;
    color: #111827;
}
