/* Estilo para el enlace de regreso */
.regreso {
    display: flex;
    justify-content: flex-start;
    padding: 10px;
    align-items: center;
    height: 50px;
    margin-top: 20px;
    margin: auto;
    width: 80%;
    border-radius: 5px;
}

.regreso a {
    text-decoration: underline;
    font-size: 20px;
    font-family: Arial, Helvetica, sans-serif;
    color:blue;
    background-color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-align: center;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.regreso a:hover {
    transform: scale(1.1);
    background-color: #ff5722;
    color: white;
}

.contenedor {
    display:block;
    justify-content: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    align-items: center;
    width: 80%;
    margin: 10px auto; /* Centra el contenedor en la página */
    padding: 10px;
    padding-right: 10px;
    background-color: #f5f5f5; /* Fondo gris claro */
    color:black;
    border-radius: 10px; /* Bordes redondeados */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Sombra para dar profundidad */
}

/* Estilo para los contenedores de texto */
.text-container {
    background-color:#333;
    box-shadow: 20%;
    color: white;
    padding: 10px;
    margin: auto;
    width: auto;
    border-radius: 8px;
}

.text-container {
    margin-top: 0px;
}

/* Estilo para las tablas */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 0px 0;
}

table,
th,
td {
    border: 1px solid black;
}

th {
    background-color:rgb(0, 68, 255);

}

caption {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    justify-content: flex-start;
    align-items: flex-start;
    font-size: 1.5em;
    margin: 20px;
}

th,
td {
    padding: 10px;
    text-align: center;
}

.ejemplos td {
    text-align: left;
}

.contenedor2 {
    display: block;
    justify-content: center;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    align-items: center;
    width: 80%;
    margin: 10px auto;
    padding: 10px;
    padding-right: 10px;
    background-color: #f5f5f5;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.codigo-ejemplo {
    width: auto;
    background-color: #333;
    color: aquamarine;
    padding: 20px;
    border-radius: 5px;
    overflow-x: auto;
    font-family: 'Courier New', Courier, monospace;
}

.codigo-ejemplo pre {
    white-space: pre-wrap;
    word-wrap: break-word;
}

.texto-derecha {
    width: 95%;
    padding-left: 20px;
}

.texto-derecha h2 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.texto-derecha p {
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-size: 16px;
    color: #555;
    line-height: 1.5;
}

.title2 {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    justify-content: center;
    color: rgb(0, 68, 255);
    font-size: 30px;
}

.navegador {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 80%;
    margin: 0 auto;
    padding: 20px;
    justify-content: center;
    background-color: rgba(51, 51, 51, 0.8);
    border-radius: 10px;
}

.button-container {
    display: flex;
    justify-content: center;
    font-family: Arial, Helvetica, sans-serif;
    flex: 1 1 200px;
}

.button {
    background-color: white;
    color: blue;
    padding: 15px 25px;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    overflow-wrap: break-word;
    max-width: 200px;
    flex: 1 1 auto;
}

.button:hover {
    background-color: aquamarine;
    transform: scale(1.05);
    color: black;
}

.button:active {
    transform: scale(1);
}

.contenedor2 a {
    color: blue; /* Color cyan */
    text-decoration: none;
    transition: color 0.3s ease, font-size 0.3s ease; /* Mantener la animación de color y tamaño */
}

.contenedor2 a:hover {
    color: brown; /* Color al pasar el ratón */
    font-size: 1.1em; /* Aumentar el tamaño del texto en el hover */
}

