/* Fuente y color base */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f0f0f5;
    color: #333;
    margin: 0;
    padding: 20px;
}

/* Encabezado */
h1 {
    text-align: center;
    color: #4a90e2;
    font-size: 2.5em;
    margin-bottom: 20px;
}

/* Tabla */
table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

th, td {
    padding: 15px;
    text-align: center;
    font-size: 1em;
}

/* Encabezado de tabla */
th {
    background-color: #4a90e2;
    color: #fff;
    font-weight: bold;
}

/* Filas de tabla */
tr:nth-child(even) {
    background-color: #f9f9ff;
}

tr:nth-child(odd) {
    background-color: #ffffff;
}

/* Estilo para iconos y enlaces */
a {
    color: #4a90e2;
    text-decoration: none;
}

a:hover {
    color: #0073e6;
    transform: scale(1.1);
    transition: color 0.3s ease, transform 0.3s ease;
}

.bi {
    font-size: 1.2em;
}

/* Celdas con links e iconos */
td a {
    padding: 8px;
    border-radius: 50%;
    background-color: #e6f2ff;
    display: inline-block;
}

/* Efecto hover en celdas con iconos */
td a:hover {
    background-color: #b3d9ff;
    color: #0073e6;
}

/* Bordes de tabla */
table, th, td {
    border: none;
}

table {
    border-radius: 10px;
    overflow: hidden;
}

/* Media query para pantallas pequeñas */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    th, td {
        font-size: 0.9em;
        padding: 10px;
    }
}
