.gln-info-popover {
    width: 300px;
    background: #ffffff;
    border-radius: 12px;
    padding: 16px;
    position: absolute;
    box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.12);
    border: 1px solid #e3e6eb;
    font-family: Arial, sans-serif;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.25s ease;
    z-index: 9999;
}

/* Header + Body remain the same */
.gln-info-header {
    font-size: 16px;
    font-weight: 600;
    color: #3a4653;
    background: #f5f8fa;
    padding: 10px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
}

.gln-info-body {
    font-size: 13px;
    line-height: 1.45;
    color: #4d5966;
}

/* Arrow Base */
.gln-info-popover::before {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
}

/* Directions */
.gln-pos-right::before {
    left: -12px;
    top: 40px;
    border-width: 10px 12px 10px 0;
    border-style: solid;
    border-color: transparent #ffffff transparent transparent;
}

.gln-pos-left::before {
    right: -12px;
    top: 50px;
    border-width: 10px 0 10px 12px;
    border-style: solid;
    border-color: transparent transparent transparent #ffffff;
}

.gln-pos-top::before {
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 12px 10px 0 10px;
    border-style: solid;
    border-color: #ffffff transparent transparent transparent;
}

/* Show Animation */
.gln-show-popover {
    opacity: 1 !important;
    visibility: visible !important;
    transform: translateY(0px) !important;
}