body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    color: #333;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

h1, h2 {
    color: #444;
    text-align: center;
}

form {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    width: 100%;
    max-width: 600px;
    box-sizing: border-box;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

input[type="file"],
input[type="number"],
input[type="text"],
select,
textarea {
    width: 100%;
    padding: 6px;
    margin-bottom: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 14px;
}

button {
    background: #20b2aa;
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
}

button:hover {
    background: #1e998f;
}

img {
    max-width: 100%;
    border-radius: 8px;
    margin-bottom: 10px;
}

a {
    color: #20b2aa;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
}

.image-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  
   
}

.image-container div {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: auto;

   
}

/* Estilos responsive */
@media (max-width: 600px) {
    form {
        padding: 15px;
            }

    input[type="file"],
    input[type="number"],
    input[type="text"],
    select,
    textarea {
        font-size: 14px;
    }

    button {
        padding: 6px 12px;
        font-size: 14px;
    }
}

/* Estilo para el botón eliminar */
.btn-eliminar {
    background: #ff69b4; 
    color: #fff;
}

.btn-eliminar:hover {
    background: #ff1493; 
}