/* Estilos generales */
body {
    font-family: 'Georgia', serif;
    background-color: #f3f0e7;
    text-align: center;
    margin: 0;
    padding: 0;
}

/* Contenedor principal */
.container {
    width: 450px;
    background: #ffffff;
    padding: 25px;
    margin: 50px auto;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    text-align: center;
    border: 3px solid #5a7d4e;
}

/* Títulos */
h2 {
    color: #3a5a40;
    font-size: 24px;
    font-family: 'Georgia', serif;
}

/* Estilos de los inputs y selects */
input, select {
    width: calc(100% - 20px);
    padding: 12px;
    margin-top: 10px;
    border: 2px solid #a3b18a;
    border-radius: 8px;
    font-size: 16px;
    background: #f9f9f9;
}

/* Botón de guardar */
button {
    width: 100%;
    padding: 12px;
    margin-top: 15px;
    border: none;
    border-radius: 8px;
    background: #5a7d4e;
    color: white;
    font-size: 18px;
    cursor: pointer;
    font-family: 'Georgia', serif;
}

button:hover {
    background: #3a5a40;
}

/* Botón para ver la lista de productos */
.button {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 15px;
    background: #5a7d4e;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Georgia', serif;
}

.button:hover {
    background: #3a5a40;
}

/* Estilos de la tabla */
table {
    width: 80%;
    margin: 20px auto;
    border-collapse: collapse;
    background: white;
    box-shadow: 0px 0px 10px gray;
}

th, td {
    padding: 12px;
    border: 1px solid #ccc;
    text-align: center;
}

th {
    background-color: #5a7d4e;
    color: white;
    font-family: 'Georgia', serif;
}

/* Botones de editar y eliminar */
a {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 15px;
    background: #5a7d4e;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Georgia', serif;
}

.edit {
    background-color: #e9c46a;
    color: black;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
}

.edit:hover {
    background-color: #d4a13a;
}

.delete {
    background-color: #e76f51;
    color: white;
    padding: 8px 12px;
    border-radius: 5px;
    font-size: 14px;
}

.delete:hover {
    background-color: #c75030;
}
