@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");
.dashboard-sidebar {
  width: 260px;
  background-color: #0f172a;
  color: #d1d5db;
  min-height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 1000;
  box-shadow: none;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
  overflow-x: hidden;
}
.dashboard-sidebar::-webkit-scrollbar {
  width: 4px;
}
.dashboard-sidebar::-webkit-scrollbar-track {
  background: transparent;
}
.dashboard-sidebar::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
}
.dashboard-sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.15);
}
.dashboard-sidebar .sidebar-header {
  padding: 24px;
  background-color: transparent;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.dashboard-sidebar .sidebar-header .sidebar-brand {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: -0.025em;
}
.dashboard-sidebar .sidebar-header .sidebar-brand i {
  margin-right: 12px;
  color: #60a5fa;
}
.dashboard-sidebar .sidebar-nav {
  padding: 24px 12px;
}
.dashboard-sidebar .sidebar-nav ul {
  list-style: none !important;
  list-style-type: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}
.dashboard-sidebar .sidebar-nav ul li {
  list-style: none !important;
  list-style-type: none !important;
}
.dashboard-sidebar .sidebar-nav ul li::before, .dashboard-sidebar .sidebar-nav ul li::marker {
  display: none !important;
  content: none !important;
}
.dashboard-sidebar .sidebar-nav ul a {
  color: inherit;
  text-decoration: none !important;
}
.dashboard-sidebar .sidebar-nav .nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dashboard-sidebar .sidebar-nav .nav > li {
  position: relative;
  margin-bottom: 4px;
}
.dashboard-sidebar .sidebar-nav .nav > li > a {
  color: #d1d5db;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1), transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}
.dashboard-sidebar .sidebar-nav .nav > li > a:hover, .dashboard-sidebar .sidebar-nav .nav > li > a:focus {
  background-color: #1e293b;
  color: #ffffff;
  text-decoration: none;
}
.dashboard-sidebar .sidebar-nav .nav > li > a i {
  margin-right: 12px;
  width: 20px;
  text-align: center;
  font-size: 18px;
  flex-shrink: 0;
}
.dashboard-sidebar .sidebar-nav .nav > li > a .fa-chevron-down {
  margin-left: auto;
  margin-right: 0;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 12px;
  opacity: 0.7;
}
.dashboard-sidebar .sidebar-nav .nav > li > a .pull-right {
  margin-left: auto;
  margin-right: 0;
}
.dashboard-sidebar .sidebar-nav .nav > li.active > a {
  background-color: #3b82f6;
  color: #ffffff;
  font-weight: 600;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.dashboard-sidebar .sidebar-nav .nav > li.has-submenu > a {
  cursor: pointer;
}
.dashboard-sidebar .sidebar-nav .nav > li.has-submenu.active > a .fa-chevron-down {
  transform: rotate(180deg);
}
.dashboard-sidebar .sidebar-nav .sidebar-item > a {
  color: #d1d5db;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1), transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
}
.dashboard-sidebar .sidebar-nav .sidebar-item > a:hover, .dashboard-sidebar .sidebar-nav .sidebar-item > a:focus {
  background-color: #1e293b;
  color: #ffffff;
  text-decoration: none;
}
.dashboard-sidebar .sidebar-nav .sidebar-item > a .fa-chevron-down {
  margin-left: auto;
  margin-right: 0;
  transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 12px;
  opacity: 0.8;
}
.dashboard-sidebar .sidebar-nav .sidebar-subitem a {
  list-style: none !important;
  padding: 8px 16px;
  padding-left: 32px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px;
  font-weight: 400;
  margin-bottom: 4px;
}
.dashboard-sidebar .sidebar-nav .sidebar-subitem a:hover {
  background-color: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.dashboard-sidebar .sidebar-nav .sidebar-subitem a i {
  margin-right: 8px;
  font-size: 14px;
  color: inherit;
}
.dashboard-sidebar .sidebar-nav .collapse {
  background-color: transparent;
  padding-left: 0;
  margin-top: 8px;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.dashboard-sidebar .sidebar-nav .collapse.show, .dashboard-sidebar .sidebar-nav .collapse.in {
  max-height: 500px;
}
.dashboard-sidebar .sidebar-nav .collapse li {
  list-style: none !important;
  list-style-type: none !important;
}
.dashboard-sidebar .sidebar-nav .collapse li::before, .dashboard-sidebar .sidebar-nav .collapse li::marker {
  display: none !important;
  content: none !important;
}
.dashboard-sidebar .sidebar-nav .collapse li a {
  padding: 8px 16px !important;
  padding-left: 32px !important;
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.85) !important;
  display: flex !important;
  align-items: center !important;
  text-decoration: none !important;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1), color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 8px !important;
  font-weight: 400 !important;
  margin-bottom: 4px !important;
  background-color: transparent !important;
}
.dashboard-sidebar .sidebar-nav .collapse li a:hover {
  background-color: rgba(255, 255, 255, 0.05) !important;
  color: #ffffff !important;
}
.dashboard-sidebar .sidebar-nav .collapse li a i {
  margin-right: 8px;
  font-size: 14px;
  color: inherit !important;
}
.dashboard-sidebar .sidebar-nav .collapse li.active a {
  background-color: rgba(59, 130, 246, 0.12) !important;
  color: #60a5fa !important;
  font-weight: 500 !important;
}
.dashboard-sidebar .sidebar-nav .sidebar-divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 16px 16px;
  border: none;
  list-style: none !important;
}
.dashboard-sidebar .sidebar-nav .sidebar-divider::before, .dashboard-sidebar .sidebar-nav .sidebar-divider::marker {
  display: none !important;
  content: none !important;
}
.dashboard-sidebar .sidebar-nav .nav > li.disabled > a {
  cursor: not-allowed !important;
  opacity: 0.5 !important;
  pointer-events: none;
  background-color: transparent !important;
}
.dashboard-sidebar .sidebar-nav .nav > li.disabled > a:hover {
  background-color: transparent !important;
  color: #d1d5db !important;
}
.dashboard-sidebar .sidebar-nav .nav > li.disabled .badge {
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 500;
}
.dashboard-sidebar.collapsed {
  width: 64px;
}
.dashboard-sidebar.collapsed .sidebar-brand {
  text-align: center;
  font-size: 0;
}
.dashboard-sidebar.collapsed .sidebar-brand i {
  margin: 0;
  font-size: 24px;
}
.dashboard-sidebar.collapsed .sidebar-nav .nav > li > a {
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
}
.dashboard-sidebar.collapsed .sidebar-nav .nav > li > a i {
  margin: 0;
  font-size: 20px;
}
.dashboard-sidebar.collapsed .sidebar-nav .nav > li > a span {
  display: none;
}

.dashboard-main {
  margin-left: 260px;
  transition: margin-left 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-header {
  height: 64px;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 260px;
  right: 0;
  z-index: 999;
}
.dashboard-header .header-left {
  display: flex;
  align-items: center;
}
.dashboard-header .header-left .breadcrumb {
  margin: 0;
  background: transparent;
  padding: 0;
}
.dashboard-header .header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dashboard-header .header-right .header-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dashboard-header .header-right .header-user .user-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
}
.dashboard-header .header-right .header-user .user-name {
  font-weight: 500;
  color: #374151;
}

.dashboard-topbar {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 32px;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  z-index: 999;
}
.dashboard-topbar .topbar-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.dashboard-topbar .topbar-left .topbar-title {
  margin: 0;
  font-size: 20px;
  color: #111827;
  font-weight: 600;
}
.dashboard-topbar .topbar-left .topbar-meta {
  font-size: 13px;
  color: #6b7280;
}
.dashboard-topbar .topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.dashboard-topbar .topbar-right .btn-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #1e293b;
  color: #ffffff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.dashboard-topbar .topbar-right .btn-icon:hover {
  background-color: #3b82f6;
}
.dashboard-topbar .topbar-right .btn-icon .badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background-color: #ef4444;
  color: #ffffff;
  font-size: 10px;
  padding: 2px 6px;
}
.dashboard-topbar .topbar-right .notifications-dropdown {
  width: 280px;
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.dashboard-topbar .topbar-right .notifications-dropdown .notifications-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 8px;
}
.dashboard-topbar .topbar-right .notifications-dropdown .notifications-header a {
  font-size: 12px;
  color: #3b82f6;
}
.dashboard-topbar .topbar-right .notifications-dropdown .notification-item {
  padding: 8px;
  border-radius: 8px;
  font-size: 13px;
  color: #4b5563;
}
.dashboard-topbar .topbar-right .notifications-dropdown .notification-item.empty {
  text-align: center;
}
.dashboard-topbar .topbar-right .topbar-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.dashboard-topbar .topbar-right .topbar-user .topbar-user-name {
  font-size: 13px;
  font-weight: 500;
  color: #374151;
}
.dashboard-topbar .topbar-right .topbar-user .topbar-logout {
  border-color: rgba(15, 23, 42, 0.2);
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.dashboard-topbar .topbar-right .topbar-user .topbar-logout:hover {
  background-color: #3b82f6;
  color: #ffffff;
  border-color: #3b82f6;
}

.dashboard-status-bar {
  position: fixed;
  bottom: 0;
  left: 260px;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e5e7eb;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #4b5563;
  box-shadow: 0 -4px 6px rgba(15, 23, 42, 0.05);
  z-index: 999;
}
.dashboard-status-bar .status-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
}
.dashboard-status-bar .status-label .status-indicator {
  font-size: 10px;
  color: #10b981;
}
.dashboard-status-bar .status-message {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.dashboard-status-bar .status-refresh {
  color: #6b7280;
  padding: 0;
}
.dashboard-status-bar .status-refresh i {
  font-size: 14px;
}
.dashboard-status-bar .status-refresh:hover {
  color: #3b82f6;
  text-decoration: none;
}

.table > thead > tr > th {
  background-color: #f9fafb;
  color: #374151;
  font-weight: 600;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 1px solid #e5e7eb;
  padding: 12px 16px;
  white-space: nowrap;
}
.table > tbody > tr {
  transition: background-color 150ms cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid #e5e7eb;
}
.table > tbody > tr > td {
  vertical-align: middle;
  padding: 16px;
  color: #111827;
  font-size: 13px;
}
.table > tbody > tr > td .label,
.table > tbody > tr > td .badge {
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 6px;
  font-weight: 500;
}
.table > tbody > tr:hover {
  background-color: #f9fafb;
}
.table > tbody > tr:last-child {
  border-bottom: none;
}
.table.table-bordered {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
}
.table.table-bordered > thead > tr > th,
.table.table-bordered > tbody > tr > td {
  border-color: #e5e7eb;
}
.table .btn-group-xs .btn {
  padding: 3px 8px;
  font-size: 12px;
}
.table .btn-group-xs .btn i {
  font-size: 12px;
}

.table-responsive {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
}
.table-responsive .table {
  margin-bottom: 0;
}
.table-responsive .table > thead > tr > th:first-child,
.table-responsive .table > tbody > tr > td:first-child {
  padding-left: 16px;
}
.table-responsive .table > thead > tr > th:last-child,
.table-responsive .table > tbody > tr > td:last-child {
  padding-right: 16px;
}

.table-empty {
  text-align: center;
  padding: 32px;
  color: #999;
}
.table-empty i {
  font-size: 48px;
  margin-bottom: 16px;
  display: block;
  opacity: 0.3;
}

.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
  font-size: 13px;
}
.form-group label .text-danger {
  color: #ef4444;
}

.form-control {
  border: 1px solid #d1d5db;
  border-radius: 6px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  padding: 10px 12px;
  font-size: 13px;
  background-color: #ffffff;
  color: #111827;
  height: 40px;
  line-height: 1.5;
}
.form-control::placeholder {
  color: #9ca3af;
}
.form-control:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
  outline: none;
  background-color: #ffffff;
}
.form-control[disabled], .form-control[readonly] {
  background-color: #f3f4f6;
  cursor: not-allowed;
  color: #6b7280;
}

select.form-control {
  cursor: pointer;
  height: 40px;
  background-image: none;
}
select.form-control[multiple] {
  height: auto;
  min-height: 80px;
}

textarea.form-control {
  resize: vertical;
  min-height: 80px;
  height: auto;
}

.input-group .input-group-addon {
  background-color: rgb(237.52, 239.04, 241.32);
  border-color: #d1d5db;
  color: #374151;
  font-weight: 500;
}

.checkbox label,
.radio label {
  font-weight: normal;
  cursor: pointer;
}
.checkbox label input[type=checkbox],
.checkbox label input[type=radio],
.radio label input[type=checkbox],
.radio label input[type=radio] {
  margin-right: 8px;
}

.help-block {
  color: #777;
  font-size: 12px;
  margin-top: 8px;
}

.has-error .form-control {
  border-color: #ef4444;
}
.has-error .form-control:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.has-error .help-block {
  color: #ef4444;
}

.has-success .form-control {
  border-color: #10b981;
}
.has-success .form-control:focus {
  border-color: #10b981;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
}

.form-inline .form-group {
  margin-right: 16px;
  margin-bottom: 12px;
}

.btn {
  border-radius: 6px;
  font-weight: 500;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  outline: none;
  padding: 10px 16px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  line-height: 1.5;
}
.btn:focus, .btn:active:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn i {
  margin-right: 8px;
}

.btn-primary {
  background-color: #3b82f6;
  color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.btn-primary:hover, .btn-primary:focus {
  background-color: rgb(21.0907317073, 105.8231707317, 244.2592682927);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}
.btn-primary:active {
  background-color: rgb(10.712195122, 95.2195121951, 233.287804878);
  box-shadow: none;
}

.btn-success {
  background-color: #10b981;
  color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.btn-success:hover, .btn-success:focus {
  background-color: rgb(12.8, 148, 103.2);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.btn-warning {
  background-color: #f59e0b;
  color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.btn-warning:hover, .btn-warning:focus {
  background-color: rgb(206.5738582677, 132.9184251969, 8.4661417323);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.btn-danger {
  background-color: #ef4444;
  color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.btn-danger:hover, .btn-danger:focus {
  background-color: rgb(235.3704433498, 25.5795566502, 25.5795566502);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.btn-info {
  background-color: #0ea5e9;
  color: #ffffff;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.btn-info:hover, .btn-info:focus {
  background-color: rgb(11.9, 140.25, 198.05);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  color: #ffffff;
}

.btn-default {
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  color: #374151;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.btn-default:hover, .btn-default:focus {
  background-color: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.btn-outline-primary {
  background-color: transparent;
  border: 1px solid #3b82f6;
  color: #3b82f6;
}
.btn-outline-primary:hover {
  background-color: #3b82f6;
  color: #ffffff;
}

.btn-xs {
  padding: 4px 12px;
  font-size: 12px;
}
.btn-xs i {
  margin-right: 4px;
  font-size: 12px;
}

.btn-sm {
  padding: 6px 12px;
  font-size: 13px;
}

.btn-lg {
  padding: 12px 24px;
  font-size: 16px;
}

.btn-icon {
  padding: 8px 10px;
}
.btn-icon i {
  margin: 0;
}

.btn-group .btn:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-square {
  width: 100px;
  height: 100px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 6px;
}
.btn-square i {
  margin: 0 0 8px 0;
  font-size: 24px;
}
.btn-square .btn-text {
  font-size: 13px;
  line-height: 1.2;
  font-weight: 500;
}

.btn-square-xs {
  width: 70px;
  height: 70px;
  padding: 8px;
}
.btn-square-xs i {
  margin: 0 0 4px 0;
  font-size: 18px;
}
.btn-square-xs .btn-text {
  font-size: 12px;
}

.btn-square-lg {
  width: 140px;
  height: 140px;
  padding: 16px;
}
.btn-square-lg i {
  margin: 0 0 12px 0;
  font-size: 32px;
}
.btn-square-lg .btn-text {
  font-size: 14px;
}

.btn-square-compact {
  width: 100%;
  aspect-ratio: 1;
  padding: 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.btn-square-compact i {
  margin: 0 0 6px 0;
  font-size: 24px;
  transition: transform 0.2s ease;
}
.btn-square-compact .btn-text {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.pagination-container {
  display: inline-block;
  margin: 16px 0;
}
.pagination-container ul.pagination {
  display: inline-flex;
  padding-left: 0;
  list-style: none;
  border-radius: 6px;
  margin: 0;
  gap: 4px;
}
.pagination-container ul.pagination li {
  display: inline-block;
}
.pagination-container ul.pagination li a.btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.pagination-container ul.pagination li a.btn.btn-default {
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  color: #374151;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.pagination-container ul.pagination li a.btn.btn-default:hover, .pagination-container ul.pagination li a.btn.btn-default:focus {
  background-color: #f9fafb;
  border-color: #9ca3af;
  color: #111827;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  text-decoration: none;
}
.pagination-container ul.pagination li a.btn i {
  margin: 0;
  font-size: 13px;
}
.pagination-container ul.pagination li.active a.btn {
  background-color: #3b82f6;
  border-color: #3b82f6;
  color: #ffffff;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  pointer-events: none;
}
.pagination-container ul.pagination li.active a.btn:hover, .pagination-container ul.pagination li.active a.btn:focus {
  background-color: #3b82f6;
  border-color: #3b82f6;
  color: #ffffff;
}
.pagination-container ul.pagination li.disabled a.btn {
  background-color: #f3f4f6;
  border-color: #e5e7eb;
  color: #9ca3af;
  cursor: not-allowed;
  pointer-events: none;
  box-shadow: none;
  opacity: 0.6;
}
.pagination-container ul.pagination li.disabled a.btn:hover, .pagination-container ul.pagination li.disabled a.btn:focus {
  background-color: #f3f4f6;
  border-color: #e5e7eb;
  color: #9ca3af;
}
.pagination-container ul.pagination li.dots a.btn {
  pointer-events: none;
  background-color: transparent;
  border-color: transparent;
  box-shadow: none;
  color: #6b7280;
}
.pagination-container ul.pagination li.dots a.btn:hover {
  background-color: transparent;
  border-color: transparent;
}

.pagination-info {
  display: block;
  margin-top: 12px;
  color: #4b5563;
  font-size: 13px;
  text-align: right;
}

@media (max-width: 576px) {
  .pagination-container {
    display: block;
    text-align: center;
  }
  .pagination-container ul.pagination {
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
  }
  .pagination-container ul.pagination li a.btn {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
    font-size: 13px;
  }
  .pagination-info {
    margin-top: 8px;
    text-align: center;
  }
}
.m-0 {
  margin: 0 !important;
}

.mt-0 {
  margin-top: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.ml-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 8px !important;
}

.mt-1 {
  margin-top: 8px !important;
}

.mr-1 {
  margin-right: 8px !important;
}

.mb-1 {
  margin-bottom: 8px !important;
}

.ml-1 {
  margin-left: 8px !important;
}

.m-2 {
  margin: 12px !important;
}

.mt-2 {
  margin-top: 12px !important;
}

.mr-2 {
  margin-right: 12px !important;
}

.mb-2 {
  margin-bottom: 12px !important;
}

.ml-2 {
  margin-left: 12px !important;
}

.m-3 {
  margin: 16px !important;
}

.mt-3 {
  margin-top: 16px !important;
}

.mr-3 {
  margin-right: 16px !important;
}

.mb-3 {
  margin-bottom: 16px !important;
}

.ml-3 {
  margin-left: 16px !important;
}

.m-4 {
  margin: 24px !important;
}

.mt-4 {
  margin-top: 24px !important;
}

.mr-4 {
  margin-right: 24px !important;
}

.mb-4 {
  margin-bottom: 24px !important;
}

.ml-4 {
  margin-left: 24px !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.p-3 {
  padding: 16px !important;
}

.pt-3 {
  padding-top: 16px !important;
}

.pr-3 {
  padding-right: 16px !important;
}

.pb-3 {
  padding-bottom: 16px !important;
}

.pl-3 {
  padding-left: 16px !important;
}

.shadow-sm {
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1) !important;
}

.shadow-md {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1) !important;
}

.shadow-lg {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1) !important;
}

.shadow-none {
  box-shadow: none !important;
}

.rounded {
  border-radius: 6px !important;
}

.rounded-lg {
  border-radius: 12px !important;
}

.rounded-sm {
  border-radius: 4px !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.text-primary {
  color: #3b82f6 !important;
}

.text-success {
  color: #10b981 !important;
}

.text-warning {
  color: #f59e0b !important;
}

.text-danger {
  color: #ef4444 !important;
}

.text-info {
  color: #0ea5e9 !important;
}

.text-muted {
  color: #6b7280 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

.bg-white {
  background-color: #ffffff !important;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: flex !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row {
  flex-direction: row !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-center {
  align-items: center !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.w-100 {
  width: 100% !important;
}

.h-100 {
  height: 100% !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cursor-not-allowed {
  cursor: not-allowed !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.overflow-auto {
  overflow: auto !important;
}

.image-square, .image-gallery-square .gallery-item .image-preview, .image-circle, .image-square-rounded {
  position: relative;
  width: 100%;
  padding-bottom: 100%;
  overflow: hidden;
  border-radius: 4px;
}
.image-square img, .image-gallery-square .gallery-item .image-preview img, .image-circle img, .image-square-rounded img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.image-square-rounded {
  border-radius: 8px;
}

.image-circle {
  border-radius: 50%;
}

.libro-row {
  cursor: pointer;
}
.libro-row:hover {
  background-color: #f9f9f9 !important;
}

.libro-info-cell,
.libro-badges-cell {
  padding: 12px !important;
  vertical-align: top !important;
}

.libro-info-wrapper {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.libro-portada {
  flex-shrink: 0;
  width: 60px;
  height: 80px;
}
.libro-portada img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid #ddd;
}

.libro-portada-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
  border: 2px dashed #ddd;
  border-radius: 3px;
  color: #999;
  font-size: 24px;
}

.libro-info-content {
  flex: 1;
  min-width: 0;
}

.libro-referencia {
  margin-bottom: 4px;
}
.libro-referencia small {
  font-size: 11px;
  color: #999;
}
.libro-referencia small i {
  margin-right: 4px;
}

.libro-titulo-autor {
  margin-bottom: 0;
  line-height: 1.4;
}
.libro-titulo-autor strong {
  font-size: 15px;
  color: #333;
}

.libro-badges-cell .badge {
  margin-right: 4px;
  margin-bottom: 4px;
  font-size: 11px;
  font-weight: normal;
  padding: 3px 8px;
  display: inline-block;
}
.libro-badges-cell .badge i {
  margin-right: 3px;
  font-size: 10px;
}
.libro-badges-cell .bg-gray {
  background-color: #d9d9d9;
  color: #666;
}
.libro-badges-cell .bg-blue {
  background-color: #3c8dbc;
  color: white;
}

.libro-fechas-inline {
  margin-top: 6px;
}
.libro-fechas-inline small {
  font-size: 11px;
  color: #999;
}

.libro-precio-cell {
  vertical-align: middle !important;
  padding: 12px !important;
}

.libro-precio {
  font-size: 18px;
  font-weight: 700;
  color: #d9534f;
  white-space: nowrap;
}

* {
  box-sizing: border-box;
}

body.dashboard-body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  background-color: #f9fafb;
  color: #111827;
  margin: 0;
  padding: 0;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.dashboard-container {
  display: flex;
  min-height: 100vh;
  width: 100%;
}

.dashboard-main {
  flex: 1;
  margin-left: 260px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  transition: margin-left 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.dashboard-main-content {
  flex: 1;
  padding: 32px;
  padding-bottom: 64px;
  background-color: #ffffff;
}

.page-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e7eb;
}
.page-header h1 {
  margin: 0;
  font-size: 32px;
  color: #111827;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.page-header h1 i {
  margin-right: 12px;
  color: #3b82f6;
}
.page-header p {
  margin-top: 8px;
  color: #4b5563;
  font-size: 14px;
}

.panel {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  margin-bottom: 24px;
  overflow: hidden;
  transition: all 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
.panel:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}
.panel .panel-heading {
  background-color: transparent;
  border-bottom: 1px solid #e5e7eb;
  padding: 20px 24px;
}
.panel .panel-heading .panel-title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  color: #111827;
}
.panel .panel-heading .panel-title i {
  margin-right: 8px;
  font-size: 16px;
}
.panel .panel-body {
  padding: 24px;
}
.panel .panel-footer {
  background-color: #f9fafb;
  border-top: 1px solid #dee5e7;
  padding: 16px;
}

.panel-primary .panel-heading {
  background-color: #0f172a;
  color: #ffffff;
  border-color: #0f172a;
}
.panel-primary .panel-heading .panel-title,
.panel-primary .panel-heading .panel-title i {
  color: #ffffff;
}

.panel-success .panel-heading {
  background-color: #10b981;
  color: #ffffff;
  border-color: #10b981;
}

.panel-info .panel-heading {
  background-color: #0ea5e9;
  color: #ffffff;
  border-color: #0ea5e9;
}

.panel-warning .panel-heading {
  background-color: #f59e0b;
  color: #ffffff;
  border-color: #f59e0b;
}

.panel-danger .panel-heading {
  background-color: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
}

.modal-content {
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  border: none;
}
.modal-content .modal-header {
  background-color: white;
  border-bottom: 1px solid #e8e8e8;
  padding: 20px 24px;
  border-radius: 8px 8px 0 0;
}
.modal-content .modal-header .modal-title {
  font-weight: 600;
  color: #333;
  font-size: 18px;
  margin: 0;
}
.modal-content .modal-header .close {
  opacity: 0.5;
  font-size: 28px;
}
.modal-content .modal-body {
  padding: 24px;
  background: white;
}
.modal-content .modal-body p {
  margin: 0 0 12px 0;
  font-size: 15px;
  color: #333;
}
.modal-content .modal-body p:last-child {
  margin: 0;
}
.modal-content .modal-body p.text-muted, .modal-content .modal-body p.text-muted small {
  font-size: 13px;
  color: #666;
  line-height: 1.5;
}
.modal-content .modal-footer {
  background-color: #fafafa;
  border-top: 1px solid #e8e8e8;
  padding: 16px 24px;
  border-radius: 0 0 8px 8px;
}
.modal-content .modal-footer .btn {
  padding: 8px 20px;
  border-radius: 4px;
  font-weight: 500;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

.alert {
  border-radius: 6px;
  padding: 16px;
  border-left-width: 4px;
}

.label {
  border-radius: 4px;
  font-weight: 500;
}

.loading-spinner {
  text-align: center;
  padding: 32px;
}
.loading-spinner i {
  font-size: 32px;
  color: #0f172a;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.fade-in {
  animation: fadeIn 0.3s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 768px) {
  .dashboard-sidebar {
    transform: translateX(-100%);
  }
  .dashboard-sidebar.show {
    transform: translateX(0);
  }
  .dashboard-main {
    margin-left: 0;
  }
  .dashboard-main-content {
    padding: 16px;
    padding-bottom: 48px;
  }
  .dashboard-status-bar {
    left: 0;
    padding: 8px 12px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .dashboard-topbar {
    padding: 12px 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .panel .panel-body {
    padding: 16px;
  }
}

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