:root {
  --primary: #4e73df;
  --secondary: #858796;
  --success: #1cc88a;
  --info: #36b9cc;
  --warning: #f6c23e;
  --danger: #e74a3b;
  --light: #f8f9fc;
  --dark: #5a5c69;
  --regionazul: #263971;
}

body {
  background-color: #f8f9fc;
  font-family: "Nunito", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  overflow-x: hidden;
}

/* Ajustes para el wrapper */
.wrapper {
  display: flex;
  width: 100%;
  align-items: stretch;
  min-height: 100vh;
}

.color1a {
  background-color: #263971;
}

.color2n {
  background-color: #e1382a;
}

.color3b {
  background-color: #e1382a;
}

.colortxt1 {
  color: #e3e6f0;
}

.imglogo img {
  width: 30%;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;
}

/* Sidebar */
#sidebar {
  min-width: 250px;
  max-width: 250px;
  min-height: 100vh;
  transition: all 0.3s;
  background-color: #263971;
}

#sidebar.active {
  margin-left: -250px;
}

#sidebar .sidebar-header {
  /* background: rgba(5, 8, 173, 0.664); */
  background-color: #e1382a;
}

#sidebar ul.components {
  padding: 20px 0;
}

#sidebar ul li a {
  padding: 10px 15px;
  display: block;
  text-decoration: none;
  transition: all 0.3s;
}

#sidebar ul li a:hover {
  background: rgba(255, 255, 255, 0.1);
}

#sidebar ul li.active > a {
  background: rgba(0, 0, 0, 0.712);
}

/* Content */
#content {
  width: 100%;
  min-height: 100vh;
  transition: all 0.3s;
}

/* Navbar */
.navbar {
  padding: 0.5rem 1rem;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(6, 24, 219, 0.15);
}

/* Cards */
.card {
  border: none;
  border-radius: 0.35rem;
  box-shadow: 0 0.15rem 1.75rem 0 rgba(58, 59, 69, 0.1);
}

.card-header {
  background-color: #f8f9fc;
  border-bottom: 1px solid #e3e6f0;
}

/* Buttons */
.btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
}

.btn-primary:hover {
  background-color: #2e59d9;
  border-color: #2653d4;
}

/* Tables */
.table {
  color: #5a5c69;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #e3e6f0;
}

/* Login Page */
.min-vh-100 {
  min-height: 100vh;
}

.row {
  margin-top: 50px;
}

/* Responsive */
@media (max-width: 768px) {
  #sidebar {
    margin-left: -250px;
  }

  #sidebar.active {
    margin-left: 0;
  }

  #content {
    width: 100%;
  }

  #content.active {
    width: calc(100% - 250px);
  }
}
