body{
font-family: Arial;
background:#f5f5f5;
margin:0;
padding:20px;
}

h1{
text-align:center;
color:#7a1c2e;
margin-bottom:20px;
}

.formulario{
background:white;
padding:20px;
border-radius:10px;
width:500px;
margin:auto;
box-shadow:0 0 10px rgba(0,0,0,0.1);
}

.formulario input{
width:100%;
padding:8px;
margin:5px 0;
border:1px solid #ccc;
border-radius:5px;
}

button{
background:#7a1c2e;
color:white;
border:none;
padding:10px;
margin-top:10px;
cursor:pointer;
border-radius:5px;
}

button:hover{
background:#5e1624;
}

.tabla{
margin-top:30px;
background:white;
padding:20px;
border-radius:10px;
box-shadow:0 0 10px rgba(0,0,0,0.1);
overflow-x:auto;
}

table{
width:100%;
border-collapse:collapse;
font-size:14px;
}

th{
background:#7a1c2e;
color:white;
padding:10px;
}

td{
padding:8px;
border-bottom:1px solid #ddd;
text-align:center;
}

/* BOTONES DE ACCIONES */

.btn-editar{
background:#007bff;
color:white;
border:none;
padding:5px 10px;
cursor:pointer;
border-radius:4px;
}

.btn-eliminar{
background:#dc3545;
color:white;
border:none;
padding:5px 10px;
cursor:pointer;
border-radius:4px;
}

.btn-etiqueta{
background:#28a745;
color:white;
border:none;
padding:5px 10px;
cursor:pointer;
border-radius:4px;
}

.btn-editar:hover{
background:#0056b3;
}

.btn-eliminar:hover{
background:#a71d2a;
}

.btn-etiqueta:hover{
background:#1e7e34;
}