@charset "UTF-8";
body {
  background-image: radial-gradient(circle at center, rgba(18, 18, 18, 0.6) 0%, rgba(18, 18, 18, 0.92) 100%), url("../img/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.login-card {
  background-color: rgba(30, 30, 30, 0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
  padding: 2.5rem;
  width: 100%;
  max-width: 420px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.login-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
  border-color: rgba(20, 184, 166, 0.3);
}

.brand-logo-container {
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.brand-logo {
  max-width: 150px;
  max-height: 60px;
  object-fit: contain;
  transition: transform 0.3s ease;
}
.brand-logo:hover {
  transform: scale(1.05);
}

.brand-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.brand-subtitle {
  color: #b3b3b3;
  font-size: 0.9rem;
  margin-bottom: 2rem;
  text-align: center;
}

.form-label {
  color: #b3b3b3;
  font-weight: 500;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #2a2a2a;
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.form-control:focus {
  background-color: rgba(255, 255, 255, 0.07);
  border-color: #14b8a6;
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.15);
  color: #ffffff;
}
.form-control::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.btn-accent {
  background-color: #14b8a6;
  border: none;
  color: #ffffff;
  font-weight: 600;
  padding: 0.75rem 1rem;
  border-radius: 8px;
  width: 100%;
  transition: opacity 0.2s ease, transform 0.1s ease;
}
.btn-accent:hover {
  background-color: rgb(22.5, 207, 186.75);
  color: #ffffff;
}
.btn-accent:active {
  transform: scale(0.98);
}

.accent-link {
  color: #14b8a6;
  text-decoration: none;
  transition: color 0.2s ease;
}
.accent-link:hover {
  color: rgb(25, 230, 207.5);
}

/* --- ESTILOS DE LA APLICACIÓN (DASHBOARD) --- */
.dashboard-layout {
  display: flex;
  min-height: 100vh;
  width: 100%;
  background-image: radial-gradient(circle at center, rgba(18, 18, 18, 0.75) 0%, rgba(18, 18, 18, 0.96) 100%), url("../img/bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.app-sidebar {
  width: 280px;
  background-color: rgba(24, 24, 24, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-right: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  padding: 2rem 1.5rem;
  transition: all 0.3s ease;
}
@media (max-width: 991.98px) {
  .app-sidebar {
    display: none;
  }
}

.dashboard-layout.sidebar-collapsed .app-sidebar {
  width: 80px;
  padding: 2rem 0.5rem;
}
.dashboard-layout.sidebar-collapsed .app-sidebar .sidebar-logo {
  padding-left: 0;
  justify-content: center;
}
.dashboard-layout.sidebar-collapsed .app-sidebar .sidebar-logo img {
  max-height: 35px;
}
.dashboard-layout.sidebar-collapsed .app-sidebar .sidebar-link {
  justify-content: center;
  padding: 0.85rem 0;
  gap: 0;
}
.dashboard-layout.sidebar-collapsed .app-sidebar .sidebar-link span:not(.toggle-icon) {
  display: none;
}
.dashboard-layout.sidebar-collapsed .app-sidebar .sidebar-link .toggle-icon {
  display: none;
}
.dashboard-layout.sidebar-collapsed .app-sidebar .sidebar-submenu {
  display: none !important;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
  padding-left: 0.5rem;
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1rem;
  color: #b3b3b3;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.2s ease;
}
.sidebar-link i, .sidebar-link svg {
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}
.sidebar-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.04);
}
.sidebar-link:hover i, .sidebar-link:hover svg {
  transform: translateX(2px);
}
.sidebar-link.active {
  color: #ffffff;
  background-color: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.25);
  box-shadow: 0 0 15px rgba(20, 184, 166, 0.1);
}

.sidebar-group {
  display: flex;
  flex-direction: column;
}

.sidebar-link .toggle-icon {
  font-size: 0.8rem;
  transition: transform 0.2s ease;
  margin-left: auto;
}
.sidebar-link[aria-expanded=true] .toggle-icon {
  transform: rotate(180deg);
}

.sidebar-submenu {
  list-style: none;
  padding: 0 0 0 1rem;
  margin: 0.25rem 0 0 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-submenu-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  color: #b3b3b3;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.sidebar-submenu-link i, .sidebar-submenu-link svg {
  font-size: 1rem;
  transition: transform 0.2s ease;
}
.sidebar-submenu-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.04);
}
.sidebar-submenu-link:hover i, .sidebar-submenu-link:hover svg {
  transform: translateX(2px);
}
.sidebar-submenu-link.active {
  color: #ffffff;
  background-color: rgba(20, 184, 166, 0.15);
  border: 1px solid rgba(20, 184, 166, 0.25);
  box-shadow: 0 0 15px rgba(20, 184, 166, 0.05);
}
.sidebar-submenu-link[aria-expanded=true] .toggle-icon {
  transform: rotate(180deg);
}

.sidebar-sub-submenu {
  list-style: none;
  padding: 0 0 0 1rem;
  margin: 0.25rem 0 0 0.75rem;
  border-left: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.sidebar-sub-submenu-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0.75rem;
  color: #a3a3a3;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  font-size: 0.85rem;
  transition: all 0.2s ease;
}
.sidebar-sub-submenu-link i, .sidebar-sub-submenu-link svg {
  font-size: 0.9rem;
  transition: transform 0.2s ease;
}
.sidebar-sub-submenu-link:hover {
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.03);
}
.sidebar-sub-submenu-link:hover i, .sidebar-sub-submenu-link:hover svg {
  transform: translateX(2px);
}
.sidebar-sub-submenu-link.active {
  color: #ffffff;
  background-color: rgba(20, 184, 166, 0.12);
  border: 1px solid rgba(20, 184, 166, 0.2);
  box-shadow: 0 0 10px rgba(20, 184, 166, 0.03);
}

.app-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.app-header {
  height: 75px;
  background-color: rgba(18, 18, 18, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.5rem;
}

.app-container {
  padding: 2.5rem;
  overflow-y: auto;
  flex: 1;
}

.stat-card {
  background-color: rgba(30, 30, 30, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 1.5rem;
  transition: all 0.3s ease;
  height: 100%;
}
.stat-card:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 184, 166, 0.25);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.stat-icon-wrapper {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.stat-icon-wrapper.teal-theme {
  background-color: rgba(20, 184, 166, 0.12);
  color: #14b8a6;
  border: 1px solid rgba(20, 184, 166, 0.2);
}
.stat-icon-wrapper.purple-theme {
  background-color: rgba(139, 92, 246, 0.12);
  color: #8b5cf6;
  border: 1px solid rgba(139, 92, 246, 0.2);
}
.stat-icon-wrapper.orange-theme {
  background-color: rgba(249, 115, 22, 0.12);
  color: #f97316;
  border: 1px solid rgba(249, 115, 22, 0.2);
}

.app-table-container {
  background-color: rgba(30, 30, 30, 0.5);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 1.5rem;
}

.app-table {
  width: 100%;
  margin-bottom: 0;
  color: #ffffff;
}
.app-table th {
  color: #b3b3b3;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1rem;
}
.app-table td {
  padding: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  vertical-align: middle;
  font-size: 0.9rem;
}
.app-table tr:last-child td {
  border-bottom: none;
}

.app-container::-webkit-scrollbar {
  width: 6px;
}

.app-container::-webkit-scrollbar-track {
  background: transparent;
}

.app-container::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

.app-container::-webkit-scrollbar-thumb:hover {
  background: rgba(20, 184, 166, 0.4);
}

/* --- ESTILOS DE LA PAGINACIÓN BOOTSTRAP --- */
.pagination {
  --bs-pagination-bg: rgba(255, 255, 255, 0.04);
  --bs-pagination-border-color: rgba(255, 255, 255, 0.06);
  --bs-pagination-color: #b3b3b3;
  --bs-pagination-hover-color: #ffffff;
  --bs-pagination-hover-bg: rgba(255, 255, 255, 0.08);
  --bs-pagination-hover-border-color: rgba(255, 255, 255, 0.12);
  --bs-pagination-active-color: #ffffff;
  --bs-pagination-active-bg: #14b8a6;
  --bs-pagination-active-border-color: #14b8a6;
  --bs-pagination-disabled-color: rgba(255, 255, 255, 0.2);
  --bs-pagination-disabled-bg: rgba(255, 255, 255, 0.01);
  --bs-pagination-disabled-border-color: rgba(255, 255, 255, 0.03);
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}
.pagination .page-link {
  transition: all 0.2s ease;
  border-radius: 6px;
  margin: 0 3px;
  box-shadow: none !important;
  padding: 0.5rem 0.85rem;
  font-weight: 500;
}

/*# sourceMappingURL=style.css.map */
