body {

    background-image: url("https://s0.wklcdn.com/image_131/3931781/158771120/99565059.700x525.jpg");

    background-size: cover;

	background-position: center;

}

.contenedor {

    max-width: 1000px;

    margin: auto;

    padding: 20px;

    background-color: #f4f4f4;
}

header {

    background-color: #333;

    color: white;

    padding: 15px 0;

    text-align: center;

}

.parrafo {

    font-size: 16px;

    color: #555;

    margin-bottom: 15px;

}

.foto {

    width: 150px;

    border: 2px solid #aaa;

    border-radius: 8px;

    margin: 10px;

}

input[type="text"],

input[type="email"],

input[type="tel"],

select,

textarea {

    width: 100%;

    padding: 10px;

    font-size: 16px;

    border: 1px solid #ccc;

    border-radius: 6px;

    box-sizing: border-box;

    margin-top: 5px;

    margin-bottom: 10px;

    resize: none;

}


li {

    list-style-type: square;

    color: #222;

    padding-left: 20px;

}

a {

    color: #0066cc;

    text-decoration: none;

    font-weight: bold;

}

a:hover {

    color: #004499;

    text-decoration: underline;

}

.seccion-introducción, .seccion-tabla, .seccion-reserva {

    margin-top: 30px;

    padding: 15px;

    background-color: #e9e9e9;

    border-radius: 8px;

}

button {

    background-color: #0066cc;

    color: white;

    padding: 10px 20px;

    border: none;

    border-radius: 6px;

    font-size: 16px;

    cursor: pointer;

}

button:hover {

    background-color: #004499;

}

article {

    flex: 1 1 65%;

}

aside {

    flex: 1 1 30%;

    background-color: #e9e9e9;

    padding: 15px;

    border-radius: 8px;

}

.tabla-resultados {

    width: 100%;

    border-collapse: collapse;

    margin-top: 20px;

    font-family: Arial, sans-serif;

    font-size: 14px;

    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);

}

.tabla-resultados th {

    background-color: #2c3e50;

    color: white;

    padding: 12px;

    text-align: left;

    text-transform: uppercase;

}

.tabla-resultados td {

    padding: 10px;

    border: 1px solid #ddd;

}

.tabla-resultados tr:nth-child(even) {

    background-color: #f2f2f2;

}

.tabla-resultados tr:nth-child(odd) {

    background-color: #ffffff;

}

.tabla-resultados tr:hover {

    background-color: #d0e6f7;

    transition: background-color 0.3s ease;

}

.botones-acciones {

    margin-top: 20px;

    display: flex;

    gap: 15px;

}

.botones-acciones button {

    padding: 10px 15px;

    background-color: #2980b9;

    color: white;

    border: none;

    border-radius: 5px;

    cursor: pointer;

    font-weight: bold;

}

.botones-acciones button:hover {

    background-color: #1c5980;

}

.no-registros {

    color: #888;

    font-style: italic;

    margin-top: 20px;

}

h2 {

    text-align: center;

    margin-bottom: 30px;

    color: #222;

}

.bloque-ejemplo {

    background-color: #eef2f7;

    border: 1px solid #ccc;

    padding: 20px;

    border-radius: 12px;

    margin-bottom: 25px;

    box-shadow: 2px 2px 10px rgba(0,0,0,0.05);

}

.bloque-ejemplo h3 {

    margin-top: 0;

    color: #0a3d62;

}

pre {

    background-color: #1e272e;

    color: #d2dae2;

    padding: 10px;

    border-radius: 8px;

    overflow-x: auto;

}

nav {

    background-color: #444;

    padding: 10px;

    text-align: center;

}

nav a {

    color: white;

    margin: 0 15px;

    text-decoration: none;

    font-weight: bold;

}

nav a:hover {

    text-decoration: underline;

}