/* Floating Button */
#custom-help-button, 
#custom-help-button-safeselect {
    position: fixed;
    bottom: 20px;
    left: 20px; /* 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; /* Stay above other elements */
    border: none;
    white-space: nowrap;
}

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

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

/* Pop-Up Modal */
#custom-help-popup, 
#custom-help-popup-safeselect {
    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; /* Stay above other elements */
    max-width: 300px;
}

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

#custom-help-popup button, 
#custom-help-popup-safeselect 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, 
#custom-help-popup-safeselect button:hover {
    background-color: #19F076;
    color: #074556;
}

/* Back Button Styling */
#custom-help-popup .back-button, 
#custom-help-popup-safeselect .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, 
#custom-help-popup-safeselect .back-button:hover {
    background-color: #cccccc;
}