/* === GENERAL === */
body {
    font-family: 'Segoe UI', sans-serif;
    background: #f4f7fc;
    color: #333;
    text-align: center;
    margin: 0;
    padding: 20px;
}

h1 {
    color: #2b6cb0;
    margin-bottom: 25px;
}

/* === FORMULARIO === */
.form-container {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 600px;
    margin: 0 auto 30px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

input[type="text"],
textarea,
select {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 14px;
}

textarea {
    resize: none;
    height: 60px;
}

button {
    background: #2b6cb0;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
    transition: 0.2s;
}

button:hover {
    background: #1e4f87;
}

.cancelar {
    display: inline-block;
    background: #e53e3e;
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: 0.2s;
}

.cancelar:hover {
    background: #c53030;
}

/* === TABLA === */
table {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    border-collapse: collapse;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

th {
    background: #2b6cb0;
    color: white;
    padding: 10px;
    font-size: 14px;
    text-transform: uppercase;
}

td {
    padding: 10px;
    border-bottom: 1px solid #eee;
}

tr:nth-child(even) {
    background: #f9f9f9;
}

tr:hover {
    background: #edf2f7;
}

/* === ENLACES === */
a {
    color: #2b6cb0;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}