/* Floating Button */
#custom-help-button {
    position: fixed;
    bottom: 20px;
    left: 20px; /* Move to bottom-left corner */
    background-color: #074556;
    color: #19F076;
    height: 50px;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    font-size: 24px; /* Font size for "?" */
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Ensure it's above other elements */
    border: none;
    white-space: nowrap;
}

#custom-help-button .help-icon {
    margin-right: 10px;
}

#custom-help-button .help-text {
    font-size: 80%; /* 20% smaller than the "?" */
    font-weight: normal;
}

/* Pop-Up Modal */
#custom-help-popup {
    display: none;
    position: fixed;
    bottom: 80px; /* Positioned above the button */
    left: 20px; /* Align with the button on the left */
    background-color: #ffffff;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 1000; /* Ensure it's above other elements */
    max-width: 300px;
}

#custom-help-popup p {
    font-size: 14px;
    margin-bottom: 15px;
    font-weight: bold;
    color: #074556;
}

#custom-help-popup button {
    background-color: #074556;
    color: #19F076;
    border: none;
    padding: 10px 20px;
    margin: 5px 0;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    width: 100%;
    text-align: center;
}

#custom-help-popup button:hover {
    background-color: #19F076;
    color: #074556;
}

/* Back Button Styling */
#custom-help-popup .back-button {
    margin-top: 10px;
    background-color: #eeeeee;
    color: #074556;
    border-radius: 10px 10px 0 0;
    font-weight: bold;
}

#custom-help-popup .back-button:hover {
    background-color: #cccccc;
}
