.floating-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 64px;
    height: 64px;
    background-color: #fff;
    border-radius: 50%;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
}

.floating-btn img {
    width: 40px;
    height: 40px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: #000;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
    text-align: center;
    width: 360px; /* Ancho fijo */
    max-width: 100%; /* Para asegurar que sea responsive */
    margin: 0 auto; /* Centrado horizontal */
}

.modal h2 {
    margin: 0;
    margin-bottom: 10px;
    font-size: 24px;
    color: #fd9d2d;
}

.modal p {
    margin: 0 0 20px;
}

/* Botón cerrar modal */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
    color: #ff0000;
}

#request-assistance {
    background-color: #5346a5;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

#request-assistance:hover {
    background-color: #fd9d2d;
}
.nrs-heingt-20 {
    width: 100%;
    height: 20px;
}

.tooltip-text {
    position: absolute;
    top: 50%;
    left: -140px; /* Ajusta este valor según la posición deseada */
    transform: translateY(-50%);
    background-color: #007bff;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.3);
}

/* Flecha del tooltip */
.tooltip-text::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -10px; /* Ajusta este valor para la flecha */
    transform: translateY(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #007bff;
}