        body {
            font-family: Arial, sans-serif;
            background-color: #f4f4f4;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            height: 100vh;
            overflow-y: scroll;
        }
        .container {
            background-color: #fff;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            width: 90%;
            max-width: 600px;
            box-sizing: border-box;
            margin-bottom: 20px;
        }
        img {
            display: block;
            margin: 0 auto 20px auto;
            width: 100%;
            max-width: 600px;
        }
        h1 {
            text-align: center;
            color: #333;
            margin-bottom: 20px;
        }
        h4 {
            text-align: center;
            color: #333;
            margin-bottom: 20px;
        }
        .h4-modal {
            text-align: left;
            color: #333;
            margin-bottom: 20px;
        }
        h1-contorno {
            background-color: #ff4343;
            border-radius: 15px;
            padding: 20px;
            font-size: 10px;
        }
        .h5-modal {
            text-align: left;
            color: #333;
            margin-bottom: 20px;
        }
        .p-modal {
            text-align: left;
            color: #333;
            margin-bottom: 20px;
        }
        ul {
            list-style-type: disc; /* Cambia el tipo de marcador, por defecto es 'disc' */
            padding-left: 20px; /* Ajusta el espacio a la izquierda de la lista */
            color: #333; /* Cambia el color del texto si lo necesitas */
            text-align: left;
        }

        li {
            margin-bottom: 10px; /* Espacio entre los elementos de la lista */
        }
        .question {
            margin-bottom: 15px;
        }
        .question label {
            font-weight: bold;
            display: block;
            margin-bottom: 5px;
            text-align: left;
        }
        .question .button-group {
            display: flex;
            justify-content: space-between;
        }
        .button-group button {
            background-color: #f8f9fa;
            border: 2px solid #007bff;
            border-radius: 5px;
            color: #007bff;
            cursor: pointer;
            flex: 1;
            padding: 10px;
            font-size: 16px;
            margin: 0 5px;
            text-align: center;
            transition: background-color 0.3s, color 0.3s;
        }
        .button-group .selected {
            background-color: #007bff;
            color: white;
        }
        .result {
            margin-top: 20px;
            padding: 10px;
            border-radius: 5px;
            display: block;
            font-size: 22px;
            text-align: center;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
        }
        .result1.success {
            background-color: #fff3cd;
            color: #856404;
        }
        .result1.warning {
            background-color: #A9D2FF;
            color: #0078FF;
        }
        .result2.success {
            background-color: #FFBC85; /* Cambia el color de fondo para 'success' */
            color: #A74C00; /* Cambia el color del texto para 'success' */
        }
        .result2.warning {
            background-color: #fff3cd; /* Cambia el color de fondo para 'warning' */
            color: #856404; /* Cambia el color del texto para 'warning' */
        }
        .result3.success {
            background-color: #FF9393; /* Cambia el color de fondo para 'success' */
            color: #913E3E; /* Cambia el color del texto para 'success' */
        }
        .result3.warning {
            background-color: #B1FFA0; /* Cambia el color de fondo para 'warning' */
            color: #75AD68; /* Cambia el color del texto para 'warning' */
        }
        .back-btn {
            display: block;
            margin-top: 5px;
            margin-bottom: 20px;
            padding: 10px;
            background-color: #0087FF;
            color: white;
            text-align: center;
            text-decoration: none;
            border-radius: 5px;
            width: auto; /* Ajusta el ancho al contenido */
            max-width: 200px; /* Opcional: límite máximo del ancho */
            font-size: 16px;
            box-sizing: border-box; /* Asegura que el padding y border se incluyan en el tamaño total */
        }
        .back-btn:hover {
            background-color: #0063B0;
        }

        /* Estilos para ventana emergente*/
        #modal {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            justify-content: center;
            align-items: center;
        }
        #modal-content {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            width: 80%;
            text-align: center;
        }
        #close-btn {
            background-color: #ff4b4b;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
        }
        #close-btn:hover {
            background-color: #d03b3b;
        }
        
        /* Estilo oculto del modal */
        #modaldif {
            display: none;
            position: fixed;
            z-index: 1;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.4);
            justify-content: center;
            align-items: center;
        }
        #modaldif-content {
            background-color: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
            max-width: 500px;
            width: 80%;
            text-align: center;
        }
        
        #close-btn-dif {
            background-color: #ff4b4b;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            margin-top: 10px;
        }
        
        /* Estilo oculto del enlace */
        #diagnosticos-diferenciales {
            display: none;
            text-align: center;
            margin-top: 20px;
            font-weight: bold;
            color: #007bff;
            cursor: pointer;
            text-decoration: underline;
        }
        
        /* Estilo oculto del enlace */
        #tratamiento-dssa {
            display: none;
            text-align: center;
            margin-top: 20px;
            font-weight: bold;
            color: #007bff;
            cursor: pointer;
            text-decoration: underline;
        }
        
        /* Estilo oculto del enlace */
        #tratamiento-dssa1 {
            display: none;
            text-align: center;
            margin-top: 20px;
            font-weight: bold;
            color: #007bff;
            cursor: pointer;
            text-decoration: underline;
        }
        
        /* Estilo oculto del enlace */
        #tratamiento-dcsa {
            display: none;
            text-align: center;
            margin-top: 20px;
            font-weight: bold;
            color: #007bff;
            cursor: pointer;
            text-decoration: underline;
        }
        
        /* Estilo oculto del enlace */
        #tratamiento-denguegrave {
            display: none;
            text-align: center;
            margin-top: 20px;
            font-weight: bold;
            color: #007bff;
            cursor: pointer;
            text-decoration: underline;
        }
        
        /* Estilos para la calculadora de dengue hiperinflamado */
        h1, h4 {
            text-align: center;
            color: #333;
            margin-bottom: 20px;
        }
        
        label {
            font-weight: bold;
            display: block;
            margin-bottom: 10px;
            text-align: left;
            color: #333;
        }
        
        input[type="number"] {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            border: 1px solid #ccc;
            border-radius: 4px;
            box-sizing: border-box;
        }
        
        button {
            background-color: #007bff;
            color: white;
            padding: 10px;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            font-size: 16px;
            width: 100%;
            margin: 20px 0;
            transition: background-color 0.3s;
        }
        
        button:hover {
            background-color: #0056b3;
        }
        
        .result {
            margin-top: 20px;
            padding: 15px;
            font-size: 18px;
            text-align: center;
            border-radius: 5px;
            box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
        }
        
        .low-risk {
            background-color: #B1FFA0;
            color: #75AD68;
        }
        
        .moderate-risk {
            background-color: #fff3cd;
            color: #856404;
        }
        
        .high-risk {
            background-color: #FF9393;
            color: #913E3E;
        }