/* Estilo general del cuerpo */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f4f8;
    margin: 0;
    padding: 0;
}

/* Estilo para formularios */
form {
    background-color: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    width: 300px;
    margin: 40px auto;
}

/* Campos de entrada y botones */
input[type="text"],
input[type="submit"],
select {
    width: 100%;
    padding: 10px;
    margin-top: 8px;
    margin-bottom: 16px;
    border: 1px solid #ccc;
    border-radius: 6px;
}

input[type="submit"] {
    background-color: #007bff;
    color: white;
    border: none;
    cursor: pointer;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

/* Barra de navegación */
nav {
    background-color: #0a5; 
    padding: 0px;
    text-align: center;
}

/* Menú con lista (si lo usas con <ul><li>) */
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: inline-flex;
    gap: 15px;
}

nav ul li {
    display: inline;
}

/* Estilo de enlaces en la barra */
nav a,
nav ul li a {
    margin: 0 15px;
    color: white;
    text-decoration: none;
    font-weight: bold;
}

/* Enlaces al pasar el mouse */
nav a:hover,
nav ul li a:hover {
    text-decoration: underline;
}

/* Enlaces visitados */
nav a:visited,
nav ul li a:visited {
    color: black;
}

.center{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.table-styled{
    overflow: hidden;
    width: fit-content;
    border-radius: 2rem;
    border: 3px solid white;
    background-color: #a076f9;
    color: #ffffff;
    font-family: sans-serif;
}
.table-styled table{
    border-right: hidden;
    border-left: hidden;
    border-top: hidden;
    border-collapse: collapse;
}
.table-styled table th{
    background-color: #6528f7;
}