#btn-sendhint {
    white-space: normal !important;   
    height: auto !important;         
    min-height: 40px;                 
    line-height: 1.2 !important;      
    padding: 8px 12px !important;     
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%; 
    max-width: 100%;
}

/* Ajuste para el icono del regalo */
#btn-sendhint i {
    margin-right: 8px;
    flex-shrink: 0;
    font-size: 18px; 
}

/* Contenedor principal */
.sendhint-container { 
    margin-top: 10px; 
    margin-bottom: 10px; 
    clear: both;
    display: block;
}

/* Modal Fondo */
.sendhint-modal {
    display: none; 
    position: fixed; 
    z-index: 2147483647 !important;
    left: 0; top: 0;
    width: 100%; height: 100%; 
    background-color: rgba(0,0,0,0.6); 
}

/* Modal Caja */
.sendhint-content {
    background-color: #fefefe;
    margin: 10% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 90%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
    position: relative;
	z-index: 2147483648;
	font-family: inherit;
}

/* Cerrar */
.sendhint-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}
.sendhint-close:hover { color: black; }

#sendhint-msg { margin-top: 10px; font-weight: bold; }
.sendhint-success { color: green; }
.sendhint-error { color: red; }