body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 20px;
}

h1, h2, h3 {
    color: #333;
    text-align: center; /* Center headings */
}

p {
    color: #666;
    line-height: 1.5;
}

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

th {
    background-color: #f2f2f2;
}

.tooltip {
    position: relative;
    display: inline-block;
}

    .tooltip .tooltiptext {
        visibility: hidden;
        width: 120px;
        background-color: black;
        color: #fff;
        text-align: center;
        border-radius:   6px;
        padding: 5px 0;
        position:   absolute;
        z-index: 1;
        bottom: 125%;
        left: 50%;
        margin-left: -60px;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .tooltip:hover .tooltiptext {
        visibility: visible;
        opacity: 1;
    }

@media (max-width: 768px) {
    .table-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        width: 100%;
    }

    table {
        width: 100%;
        min-width: 600px;
    }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    /* Adjust font sizes for smaller screens */
    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    /* Make tables more responsive */
    table {
        overflow-x: auto;
    }
}


/* Estilo general del contenedor de cada paso */
.step-container {
    display: flex; /* Para que los elementos estén en línea */
    align-items: center; /* Alinear verticalmente el número con el texto */
    border: 2px solid #00bfff; /* Borde celeste alrededor del paso */
    border-radius: 10px; /* Bordes redondeados */
    padding: 15px;
    margin-bottom: 20px; /* Espacio entre pasos */
    background-color: #f9f9f9; /* Color de fondo para mayor visibilidad */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Sombra ligera */
}

/* Estilo del número del paso en el círculo */
.step-number {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 2px solid #00bfff; /* Borde celeste */
    border-radius: 50%; /* Círculo perfecto */
    font-size: 1.2rem; /* Tamaño de fuente del número */
    font-weight: bold;
    color: #00bfff; /* Color del número */
    margin-right: 15px; /* Espacio entre el número y el texto */
}

/* Estilo del texto del paso */
.step-description {
    flex: 1; /* Para que el texto ocupe el resto del espacio */
}

    /* Opcional: estilo del título de cada paso */
    .step-description h3 {
        margin: 0 0 5px; /* Sin margen arriba, pero con margen abajo */
        color: #333; /* Color del título */
    }

    /* Opcional: estilo del texto de descripción */
    .step-description p {
        margin: 0;
        color: #555; /* Color del texto de descripción */
    }

.steps-wrapper {
    margin-top: 20px; /* Espacio superior para todo el contenedor de pasos */
}




.icon-component .icon-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
}

.icon-component .icon-link {
    text-decoration: none;
    color: #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.9rem;
}

    .icon-component .icon-link img {
        width: 50px; /* Tamaño del ícono */
        height: 50px;
        margin-bottom: 0.5rem;
        transition: transform 0.3s;
    }

    .icon-component .icon-link span {
        margin-top: 0.5rem;
    }

    .icon-component .icon-link:hover img {
        transform: scale(1.1);
    }

    .icon-component .icon-link:hover span {
        color: #007acc;
    }


/* Formulario de activos */
.form-activos {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-width: 400px;
    margin: 0 auto 30px auto;
}

    .form-activos label {
        display: block;
        margin-bottom: 6px;
        font-weight: bold;
        color: #333;
    }

    .form-activos input[type="text"] {
        width: 100%;
        padding: 10px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 6px;
        box-sizing: border-box;
        font-size: 1rem;
    }

    .form-activos button {
        background-color: #00bfff;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 6px;
        cursor: pointer;
        font-size: 1rem;
        width: 100%;
        transition: background-color 0.3s;
    }

        .form-activos button:hover {
            background-color: #009acd;
        }

.resultado-grafico {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 40px;
}


.markdown-container {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    line-height: 1.6;
    color: #333;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

    .markdown-container h1,
    .markdown-container h2,
    .markdown-container h3 {
        color: #005f9e;
    }

    .markdown-container p {
        margin: 10px 0;
    }

    .markdown-container ul {
        padding-left: 20px;
        margin: 10px 0;
    }

    .markdown-container li {
        margin-bottom: 8px;
    }


.formulario-perfil {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    max-width: 600px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.campo-formulario {
    margin-bottom: 15px;
}

    .campo-formulario label {
        display: block;
        margin-bottom: 5px;
        font-weight: bold;
        color: #333333;
    }

    .campo-formulario select,
    .campo-formulario input[type="text"] {
        width: 100%;
        padding: 10px;
        border: 1px solid #cccccc;
        border-radius: 6px;
        box-sizing: border-box;
        font-size: 1rem;
    }

.boton-enviar {
    background-color: #00bfff;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    width: 100%;
    transition: background-color 0.3s;
}

    .boton-enviar:hover {
        background-color: #009acd;
    }

.resultado {
    background-color: #ffffff;
    max-width: 600px;
    margin: 20px auto; /* centrado y espacio vertical */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
    color: #333333;
    text-align: center;
}

    .resultado h3 {
        margin-bottom: 10px;
        font-weight: bold;
    }

    .resultado p {
        font-size: 1.2rem;
        margin: 0;
    }
