
.help-container {
    position: relative;
    display: inline-block;
}

.help-icon {
    background-color: #007BFF;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 12px;
    font-weight: bold;
    margin-left: 5px;
}

.help-text {
    display: none;
    position: absolute;
    top: 30px;
    left: 0;
    background-color: #fff;
    color: #333;
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 8px;
    font-size: 14px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    white-space: normal; /* Allows wrapping of text */
    width: 150px; /* Limit the width to 50px */
    word-wrap: break-word; /* Ensure long words wrap properly */
    z-index: 100;
}

.help-container:hover .help-text,
.help-container.active .help-text {
    display: block;
}