/* easy-print-service — custom styles */

/* Sidebar */
#sidebar {
  width: 230px;
  min-height: 100vh;
  flex-shrink: 0;
  transition: width 0.2s ease;
}

#sidebar .nav-link {
  border-radius: 6px;
  padding: 0.5rem 0.75rem;
  margin-bottom: 2px;
  font-size: 0.9rem;
}

#sidebar .nav-link:hover,
#sidebar .nav-link.active {
  background-color: rgba(255, 255, 255, 0.12);
}

#sidebar .sidebar-brand {
  font-size: 1.1rem;
  letter-spacing: 0.02em;
}

/* Page content */
#page-content {
  min-height: 100vh;
  background-color: #f8f9fa;
}

/* Tables */
.table th {
  font-weight: 600;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6c757d;
}

/* Cards */
.card {
  border-radius: 10px;
  border: 1px solid #e9ecef;
}

.card-header {
  background-color: #fff;
  border-bottom: 1px solid #e9ecef;
  padding: 0.85rem 1.25rem;
}

/* Font monospace para order_sn */
.font-monospace {
  font-size: 0.88rem;
}

/* Badges */
.badge {
  font-weight: 500;
  font-size: 0.75rem;
}

/* Responsive sidebar collapse */
@media (max-width: 991px) {
  #sidebar {
    width: 0;
    overflow: hidden;
  }
  #sidebar.show {
    width: 230px;
  }
}

/* Loading overlay */
.loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
