body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    margin-bottom: 20px;
}

form {
    display: flex;
    flex-direction: column;
}

label {
    margin-bottom: 8px;
}

input[type="text"] {
    padding: 8px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

button {
    padding: 10px;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    
}

button:hover {
    background-color: #0056b3;
}
.styled-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-size: 16px;
    text-align: left;
}

.styled-table thead tr {
    background-color: #007bff;
    color: #ffffff;
}

.styled-table th, .styled-table td {
    padding: 12px 15px;
    border: 1px solid #dddddd;
}

.styled-table tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}

.styled-table tbody tr:hover {
    background-color: #e0e0e0;
}

.styled-table th {
    background-color: #007bff;
    color: #ffffff;
}

.styled-table td {
    border-bottom: 1px solid #ddd;
}

/* Estilos para el contenedor principal */
/*.container {
    width: 100%;
    max-width: 1200px; 
    padding: 20px;
    box-sizing: border-box; 
}*/


/* Estilos para el contenedor de la imagen */
.image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

/* Estilos para la imagen */
.image-wrapper img {
    max-width: 100%;
    height: auto; /* Mantiene la proporción de la imagen */
    border-radius: 8px; /* Opcional: bordes redondeados */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Opcional: sombra para efecto 3D */
}

.center-container {
    text-align: center;
}

.texto-boton{

    font-size: 23px;
}