/* General */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f5f5f5;
    color: #56b140;
}
h1 {
    color:#ffffff
}
header {
    padding: 20px;
    text-align: center;
}
header nav ul {
    list-style: none;
    padding: 0;
}

header nav ul li {
    display: inline;
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* Secciones */
section {
    padding: 30px;
    margin: 20px auto;
    background: white;
    border-radius: 10px;
    width: 80%;
    box-shadow: 0px 2px 6px rgba(0,0,0,0.2);
}

h2 {
    color: #7fa81f;
}
header h2 {
  margin: 0;
  text-shadow: 1px 1px 2px #fff8ec; 
}

/* Tabla */
table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
}

table th, table td {
    border: 1px solid #ccc;
    padding: 10px;
    text-align: center;
}

table th {
    background-color: rgb(60, 88, 41);
    color: white;
}

/* Formulario */
form {
    display: flex;
    flex-direction: column;
}

form label {
    margin-top: 10px;
}

form input, form textarea {
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #aaa;
}

button {
    margin-top: 15px;
    padding: 10px;
    background-color: rgb(60, 88, 41);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: rgb(60, 88, 41);
}

/* Footer */
footer {
    text-align: center;
    background-color: rgb(60, 88, 41);
    color: white;
    padding: 10px;
    margin-top: 20px;
}
