
.lpm-tier-badge {
    position: absolute; /* Change from fixed to absolute */
    top: 50%; /* Center vertically relative to parent */
    transform: translateY(-50%); /* Perfect vertical centering */
    right: 10px; /* Position to the right of the user icon - adjust as needed */
    padding: 5px 10px; /* Smaller padding to fit better */
    border-radius: 20px;
    color: white;
    font-weight: bold;
    z-index: 9999;
    cursor: help;
    font-size: 14px; /* Slightly smaller font */
}

.lpm-progress-container {
    display: none;
    position: absolute; /* Change from fixed to absolute */
    top: 100%; /* Position below the badge */
    right: 0;
    background: white;
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    font-size: 14px;
    z-index: 10000; /* Higher than the badge */
}

.lpm-tier-badge:hover + .lpm-progress-container,
.lpm-progress-container:hover {
    display: block;
}

.lpm-progress-bar {
    height: 20px;
    background-color: #4caf50;
    border-radius: 5px;
    margin-bottom: 10px;
    width: 0%;
}

.lpm-progress-text {
    color: #333;
}
