body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f9fa;
    font-size: 10px !important;
}
.navbar {
    background-color: #0056B3;
}
.nav-link {
    color: #ffffff !important;
}
.nav-link:hover {
    color: #f0f0f0 !important;
}
    /* Estilos para la tabla */
table {
font-size: 0.9rem;
}
tbody tr:nth-child(odd) {
background-color: #e1f5fe; /* Celeste claro */
}
tbody tr:hover {
background-color: #bbdefb; /* Celeste más oscuro al pasar el ratón */
}

/* Estilos para el encabezado de la tabla */
thead th {
background-color: #0056B3 !important; /* Azul Bootstrap */
color: white !important;
border: none; /* Eliminar líneas */
padding: 0.75rem;
text-align: left;
}
thead th a {
color: white !important;
list-style: none;
text-decoration:none;
}

/* Estilos para el cuerpo de la tabla */
tbody td {
border: none; /* Eliminar líneas */
padding: 0.75rem;
vertical-align: middle;
}
h1 {
font-family: 'Playfair Display', serif;
font-size: 1.5em;
font-weight: 700;
color: #34495e;
text-align: center;
margin-bottom: 1rem;
background-image: linear-gradient(to right, #0056B3, rgba(230, 126, 34, 0));
background-repeat: no-repeat;
background-position: bottom;
background-size: 40% 3px;
padding-bottom: 0.5rem;
}
footer{
background:#0056B3;
}
.sidebar-link {
color: #495057; /* Darker gray for links */
font-weight: 500; /* Slightly bold for better readability */
display: block; /* Ensure links are block-level elements */
padding: 0.5rem 1rem; /* Add padding for clickable area */
text-decoration: none; /* Remove underline from links */
}

.sidebar-link:hover {
color: #0056B3; /* Blue text on hover */
background-color: #f8f9fa; /* Light gray background on hover */
}

.sidebar-link.active {
color: #ffffff; /* White text for active link */
background-color: #0056B3; /* Blue background for active link */
font-weight: bold; /* Bold text for active link */
}

.sidebar-link.disabled {
color: #adb5bd; /* Light gray for disabled links */
pointer-events: none; /* Disable clicking on disabled links */
}