body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

#installBtn {
    display: none;
    padding: 10px 20px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 16px;
}

ul {
    margin: 0;
    /* Quita el margen superior/inferior predeterminado de la lista */
    padding-left: 20px;
    /* Ajusta el sangrado si lo necesitas */
}

li {
    margin-bottom: 5px;
    /* Pequeño espacio entre cada paso */
    text-align: left;
    display: flex;
    /* Use flexbox for easier alignment */
    align-items: center;
    /* Vertically center items */
    gap: 8px;
    /* Add some space between the icon and text */
}

/* Target the SVG specifically within the list item */
li svg {
    /* Most common solutions */
    vertical-align: middle;
    /* Aligns the middle of the SVG with the middle of the text */
    /* or */
    /* vertical-align: -3px; /* Adjust this value as needed, negative moves it down */
    /* or */
    /* margin-top: 2px; /* Another way to nudge it down */
}

.login-container {
    background-color: white;
    border-radius: 5px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 350px;
    position: relative;
    /* Para posicionar el botón de WhatsApp */
}

.wpp-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: transform 0.2s;
}

.wpp-btn:hover {
    transform: scale(1.1);
}

.wpp-btn img {
    width: 100%;
    height: auto;
}

h2 {
    text-align: center;
    color: #333;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.form-group input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    box-sizing: border-box;
}

.btn {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
}

.btn:hover {
    background-color: #45a049;
}

.error-message {
    color: red;
    margin-bottom: 15px;
    text-align: center;
}

.registry-link {
    text-align: center;
    margin-top: 15px;
}

.registry-link a {
    color: #4CAF50;
    text-decoration: none;
}

.registry-link a:hover {
    text-decoration: underline;
}

#hash-container {
    display: none;
}

/* CSS para ocultar las flechas del input number */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Botón flotante de WhatsApp */
.soporte-gratis {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.soporte-gratis:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}

.soporte-gratis .tooltip {
    position: static;
    opacity: 1;
    pointer-events: auto;
    background: transparent;
    color: white;
    padding: 0;
    box-shadow: none;
    font-size: 16px;
    line-height: 1;
}

.soporte-gratis span {
    display: flex;
    align-items: center;
    font-size: 20px;
}

.soporte-gratis i {
    font-size: 20px;
}

.soporte-gratis img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}