/* General Styles */
body {
  font-family: "Open Sans", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f8f9fa;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}



/* Header Styles */
.menuHead,
.menu-nav-top {
  background-color: #343a40;
  color: #fff;
  padding: 10px 0;
  font-size: 0.9rem;
}

.menu-nav-top ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.menu-nav-top ul li {
  margin: 0 10px;
}

.menu-nav-top ul li a {
  color: #fff;
  text-decoration: none;
}

.logo-main {
  background-color: #ffffff;
  padding: 10px 0;
}

.logo img {
  width: 150%;
  max-width: 200px;
}

/* Navbar Styles */
.navbar {
  background-color: #1b2851 !important;
}

.navbar-nav .nav-link {
  color: #fff !important;
}

/* Breadcrumb Styles */
.breadcrumb {
  background: #e9ecef;
  border-radius: 0.25rem;
  margin: 0;
  padding: 0.75rem 1rem;
  list-style: none;
}

.breadcrumb-item a {
  color: #007bff;
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

/* Main Content Styles */
.wrapper {
  padding: 20px;
  flex: 1;
}

.year-list,
.month-list,
.file-list {
  list-style-type: none;
  padding-left: 0;
}

.year-list li,
.month-list li,
.file-list li {
  margin: 10px 0;
}

.year-list li a,
.month-list li a {
  text-decoration: none;
  font-size: 1.2rem;
}

.file-list li {
  display: flex;
  align-items: center;
}

.file-list li a {
  text-decoration: none;
  color: #212529;
  margin-left: 5px;
}

.icono-pdf,
.icono-excel,
.icono-word {
  display: inline-block;
  width: 24px;
  height: 24px;
  background-size: cover;
  margin-right: 10px;
}

.icono-pdf {
  background-image: url("../img/archivo-pdf.png");
}

.icono-excel {
  background-image: url("../img/archivo-xls.png");
}

.icono-word {
  background-image: url("../img/archivo-de-word.png");
}

/* Footer Styles */
.footer_background {
  background-color: #343a40;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: auto;
}
