/* 🔹 Reset CSS - Normaliza estilos en todos los navegadores */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 🔹 Normaliza el body */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
}

/* 🔹 Elimina decoraciones en enlaces */
a {
    text-decoration: none;
    color: inherit;
}

/* 🔹 Imágenes responsivas */
img {
    max-width: 100%;
    height: auto;
}

/* 🔹 Botones base */
button {
    border: none;
    cursor: pointer;
}

/* 🔹 Formularios */
input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* 🔹 Tablas */
table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    padding: 10px;
    text-align: left;
}

/* 🔹 Mejora accesibilidad en botones y enlaces */
button:hover, a:hover {
    opacity: 0.8;
}
