@import "https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Kantumruy+Pro:wght@300;400;500;600;700;800&display=swap";
/* [project]/src/styles/globals.css [app-client] (css) */
:root {
  --sidebar-bg: #2f55a5;
  --sidebar-hover: #ffffff14;
  --sidebar-active: #1e3b75;
  --sidebar-text: #cbd5e1;
  --sidebar-text-active: #fff;
  --sidebar-width: 260px;
  --bg-primary: #f8fafc;
  --bg-card: #fff;
  --bg-card-hover: #f1f5f9;
  --text-primary: #0f172a;
  --text-secondary: #64748b;
  --text-muted: #94a3b8;
  --accent: #2f55a5;
  --accent-dark: #1e3b75;
  --accent-light: #eef2fa;
  --success: #10b981;
  --success-light: #ecfdf5;
  --warning: #f16222;
  --warning-light: #fef4ef;
  --danger: #ef4444;
  --danger-light: #fef2f2;
  --info: #8b5cf6;
  --info-light: #f5f3ff;
  --neutral: #6b7280;
  --neutral-light: #f9fafb;
  --border: #e2e8f0;
  --border-hover: #cbd5e1;
  --shadow-sm: 0 1px 2px #00000005;
  --shadow: 0 4px 20px -2px #0f172a0d, 0 2px 8px -1px #0f172a08;
  --shadow-lg: 0 10px 30px -5px #0f172a14, 0 8px 12px -6px #0f172a0a;
  --shadow-xl: 0 20px 40px -8px #0f172a1f;
  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --radius-full: 9999px;
  --transition: .2s ease;
  --transition-fast: .15s ease;
}

*, :before, :after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin: 0;
  padding: 0;
}

button, input, select, textarea {
  font-family: inherit;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
}

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: Kantumruy Pro, Inter, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  line-height: 1.6;
}

.app-layout {
  min-height: 100vh;
  display: flex;
}

.main-content {
  margin-left: var(--sidebar-width);
  min-height: 100vh;
  transition: margin-left var(--transition);
  flex-direction: column;
  flex: 1;
  display: flex;
}

.page-content {
  flex: 1;
  padding: 24px;
}

.sidebar {
  width: var(--sidebar-width);
  background: var(--sidebar-bg);
  z-index: 100;
  flex-direction: column;
  height: 100vh;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  overflow: hidden;
}

.sidebar-logo {
  border-bottom: 1px solid #ffffff0f;
  align-items: center;
  gap: 12px;
  padding: 20px 20px 16px;
  display: flex;
}

.sidebar-logo-icon {
  background: linear-gradient(135deg, var(--accent), #6366f1);
  border-radius: var(--radius);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 38px;
  height: 38px;
  font-size: 18px;
  display: flex;
}

.sidebar-logo-text {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
}

.sidebar-logo-sub {
  color: var(--sidebar-text);
  font-size: 11px;
  font-weight: 400;
}

.sidebar-section-label {
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #94a3b880;
  padding: 16px 20px 6px;
  font-size: 10px;
  font-weight: 600;
}

.sidebar-nav {
  padding: 8px 12px;
}

.sidebar-item {
  border-radius: var(--radius-sm);
  color: var(--sidebar-text);
  transition: all var(--transition-fast);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-bottom: 2px;
  padding: 9px 12px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.sidebar-item:hover {
  background: var(--sidebar-hover);
  color: #e2e8f0;
}

.sidebar-item.active {
  color: var(--sidebar-text-active);
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  box-shadow: none;
  background: #ffffff1f;
  border-right: 4px solid #c084fc;
}

.sidebar-item-icon {
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 20px;
  height: 20px;
  font-size: 16px;
  display: flex;
}

.sidebar-badge {
  background: var(--danger);
  color: #fff;
  border-radius: var(--radius-full);
  text-align: center;
  min-width: 18px;
  margin-left: auto;
  padding: 1px 6px;
  font-size: 10px;
  font-weight: 700;
}

.sidebar-footer {
  border-top: 1px solid #ffffff0f;
  margin-top: auto;
  padding: 16px 12px;
}

.sidebar-user {
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition-fast);
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  display: flex;
}

.sidebar-user:hover {
  background: var(--sidebar-hover);
}

.sidebar-avatar {
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent), #6366f1);
  color: #fff;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 34px;
  height: 34px;
  font-size: 13px;
  font-weight: 700;
  display: flex;
}

.sidebar-user-info {
  flex: 1;
  overflow: hidden;
}

.sidebar-user-name {
  color: #e2e8f0;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
}

.sidebar-user-role {
  color: var(--sidebar-text);
  font-size: 11px;
}

.topbar {
  z-index: 50;
  height: 76px;
  box-shadow: var(--shadow-sm);
  background: #2f55a5;
  border-bottom: 1px solid #ffffff1f;
  justify-content: space-between;
  align-items: center;
  padding: 0 32px;
  display: flex;
  position: sticky;
  top: 0;
}

.topbar-title {
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.topbar-subtitle {
  color: #ffffffbf;
  font-size: 12px;
}

.topbar-actions {
  align-items: center;
  gap: 12px;
  display: flex;
}

.topbar-btn {
  border-radius: var(--radius-full);
  cursor: pointer;
  color: #ffffffd9;
  width: 36px;
  height: 36px;
  transition: all var(--transition-fast);
  background: #ffffff14;
  border: 1px solid #ffffff26;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  display: flex;
  position: relative;
}

.topbar-btn:hover {
  color: #fff;
  background: #ffffff2e;
  border-color: #ffffff4d;
}

.notification-dot {
  background: var(--danger);
  border: 2px solid #2f55a5;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 4px;
  right: 4px;
}

.stats-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-bottom: 24px;
  display: grid;
}

.stats-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  cursor: default;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  display: flex;
}

.stats-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.stats-card-icon {
  border-radius: var(--radius);
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  font-size: 22px;
  display: flex;
}

.stats-card-info {
  flex: 1;
}

.stats-card-value {
  margin-bottom: 4px;
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.stats-card-label {
  color: var(--text-secondary);
  font-size: 12.5px;
  font-weight: 500;
}

.stats-card-change {
  margin-top: 4px;
  font-size: 11.5px;
  font-weight: 600;
}

.change-up {
  color: var(--success);
}

.change-down {
  color: var(--danger);
}

.page-header-container {
  padding: 24px 24px 0;
}

@media (max-width: 768px) {
  .page-header-container {
    padding: 16px 16px 0;
  }
}

.page-header {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  display: flex;
}

.page-header-left h1 {
  font-size: 20px;
  font-weight: 700;
}

.page-header-left p {
  color: var(--text-secondary);
  margin-top: 2px;
  font-size: 13px;
}

.card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  border: 1px solid #e2e8f0b3;
  overflow: hidden;
}

.card-header {
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  display: flex;
}

.card-title {
  font-size: 15px;
  font-weight: 700;
}

.card-body {
  padding: 20px;
}

.table-wrapper {
  background: #fff;
  border: none;
  border-radius: 12px;
  overflow-x: auto;
  box-shadow: 0 4px 24px #0000000a;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 14px;
}

thead th {
  background: var(--accent);
  text-align: left;
  color: #fff;
  white-space: nowrap;
  border: none;
  padding: 16px;
  font-size: 13px;
  font-weight: 600;
}

tbody tr {
  border-bottom: 1px solid #f1f5f9;
  transition: background .2s;
}

tbody tr:nth-child(odd) {
  background: #f8fafc;
}

tbody tr:nth-child(2n) {
  background: #fff;
}

tbody tr:hover {
  background: #f1f5f9;
}

tbody tr:last-child {
  border-bottom: none;
}

tbody td {
  color: #334155;
  vertical-align: middle;
  border: none;
  padding: 14px 16px;
}

.badge {
  border-radius: var(--radius-full);
  white-space: nowrap;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  font-size: 11.5px;
  font-weight: 600;
  display: inline-flex;
}

.badge-pending {
  background: var(--warning-light);
  color: #92400e;
}

.badge-assigned {
  color: #4338ca;
  background: #e0e7ff;
}

.badge-picked-up {
  background: var(--accent-light);
  color: #1d4ed8;
}

.badge-in-transit {
  background: var(--info-light);
  color: #5b21b6;
}

.badge-delivered {
  background: var(--success-light);
  color: #065f46;
}

.badge-failed {
  background: var(--danger-light);
  color: #991b1b;
}

.badge-returned {
  background: var(--neutral-light);
  color: #374151;
}

.badge-available {
  background: var(--success-light);
  color: #065f46;
}

.badge-on-delivery {
  background: var(--accent-light);
  color: #1d4ed8;
}

.badge-offline {
  background: var(--neutral-light);
  color: #374151;
}

.badge-active {
  background: var(--success-light);
  color: #065f46;
}

.badge-inactive {
  background: var(--neutral-light);
  color: #374151;
}

.badge-maintenance {
  background: var(--warning-light);
  color: #92400e;
}

.badge-admin {
  background: var(--info-light);
  color: #5b21b6;
}

.badge-User, .badge-basic {
  background: var(--neutral-light);
  color: #374151;
}

.badge-standard {
  background: var(--accent-light);
  color: #1d4ed8;
}

.badge-premium {
  color: #7e22ce;
  background: #fdf4ff;
}

.badge-paid {
  background: var(--success-light);
  color: #065f46;
}

.btn {
  cursor: pointer;
  white-space: nowrap;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: inline-flex;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-dark);
}

.btn-success {
  color: #fff;
  background: #10b981;
}

.btn-success:hover {
  background: #059669;
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}

.btn-danger:hover {
  background: #dc2626;
  transform: translateY(-1px);
}

.btn-warning {
  background: var(--warning);
  color: #fff;
}

.btn-warning:hover {
  background: #d97706;
}

.btn-outline {
  color: var(--text-secondary);
  border: 1px solid var(--border);
  background: none;
}

.btn-outline:hover {
  background: var(--bg-primary);
  border-color: var(--border-hover);
  color: var(--text-primary);
}

.btn-ghost {
  color: var(--text-secondary);
  background: none;
  padding: 6px 10px;
}

.btn-ghost:hover {
  background: var(--bg-primary);
  color: var(--text-primary);
}

.btn-sm {
  padding: 5px 10px;
  font-size: 12px;
}

.btn-icon {
  border-radius: var(--radius-sm);
  padding: 7px;
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none !important;
}

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

.form-label {
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-size: 12.5px;
  font-weight: 600;
  display: block;
}

.form-label span {
  color: var(--danger);
  margin-left: 2px;
}

.form-control {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  width: 100%;
  color: var(--text-primary);
  background: var(--bg-card);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
  padding: 9px 12px;
  font-family: inherit;
  font-size: 13.5px;
}

.form-control:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px #3b82f61f;
}

.form-control::placeholder {
  color: var(--text-muted);
}

select.form-control {
  cursor: pointer;
}

.form-row {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  display: grid;
}

.form-row-3 {
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  display: grid;
}

.modal-overlay {
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  z-index: 200;
  background: #00000073;
  justify-content: center;
  align-items: center;
  padding: 20px;
  animation: .15s fadeIn;
  display: flex;
  position: fixed;
  inset: 0;
}

.modal {
  background: var(--bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  animation: .2s slideUp;
  overflow-y: auto;
}

.modal-lg {
  max-width: 780px;
}

.modal-sm {
  max-width: 420px;
}

.modal-header {
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 16px;
  display: flex;
}

.modal-title {
  font-size: 16px;
  font-weight: 700;
}

.modal-body {
  padding: 20px 24px;
}

.modal-footer {
  border-top: 1px solid var(--border);
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  display: flex;
}

.modal-close {
  border-radius: var(--radius-full);
  background: var(--bg-primary);
  cursor: pointer;
  width: 30px;
  height: 30px;
  color: var(--text-secondary);
  transition: all var(--transition-fast);
  border: none;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  display: flex;
}

.modal-close:hover {
  background: var(--border);
  color: var(--text-primary);
}

.filter-bar {
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  display: flex;
}

.search-input-wrapper {
  flex: 1;
  min-width: 200px;
  max-width: 320px;
  position: relative;
}

.search-icon {
  color: var(--text-muted);
  font-size: 15px;
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
}

.search-input {
  padding-left: 34px !important;
}

.empty-state {
  text-align: center;
  color: var(--text-muted);
  padding: 60px 20px;
}

.empty-state-icon {
  opacity: .4;
  margin-bottom: 12px;
  font-size: 48px;
}

.empty-state-title {
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-size: 15px;
  font-weight: 600;
}

.empty-state-text {
  font-size: 13px;
}

.loading-wrapper {
  justify-content: center;
  align-items: center;
  padding: 60px;
  display: flex;
}

.spinner {
  border: 3px solid var(--border);
  border-top-color: var(--accent);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  animation: .7s linear infinite spin;
}

.charts-grid {
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 24px;
  display: grid;
}

.login-page {
  background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  display: flex;
  position: relative;
  overflow: hidden;
}

.login-page:before {
  content: "";
  background: radial-gradient(circle, #3b82f626 0%, #0000 70%);
  border-radius: 50%;
  width: 600px;
  height: 600px;
  position: absolute;
  top: -200px;
  right: -200px;
}

.login-page:after {
  content: "";
  background: radial-gradient(circle, #6366f11a 0%, #0000 70%);
  border-radius: 50%;
  width: 400px;
  height: 400px;
  position: absolute;
  bottom: -100px;
  left: -100px;
}

.login-card {
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  z-index: 1;
  background: #ffffff0a;
  border: 1px solid #ffffff1a;
  width: 100%;
  max-width: 420px;
  padding: 40px;
  position: relative;
  box-shadow: 0 25px 50px #0006;
}

.login-logo {
  text-align: center;
  margin-bottom: 32px;
}

.login-logo-icon {
  background: linear-gradient(135deg, var(--accent), #6366f1);
  border-radius: var(--radius-lg);
  justify-content: center;
  align-items: center;
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  font-size: 30px;
  display: flex;
  box-shadow: 0 8px 24px #3b82f666;
}

.login-logo-title {
  color: #fff;
  font-size: 22px;
  font-weight: 800;
}

.login-logo-sub {
  color: #ffffff80;
  margin-top: 4px;
  font-size: 13px;
}

.login-form .form-label {
  color: #ffffffb3;
}

.login-form .form-control {
  color: #fff;
  background: #ffffff12;
  border-color: #ffffff1f;
}

.login-form .form-control::placeholder {
  color: #ffffff4d;
}

.login-form .form-control:focus {
  border-color: var(--accent);
  background: #ffffff1a;
}

.login-btn {
  background: linear-gradient(135deg, var(--accent), #6366f1);
  color: #fff;
  border-radius: var(--radius);
  cursor: pointer;
  width: 100%;
  transition: all var(--transition);
  border: none;
  margin-top: 8px;
  padding: 12px;
  font-size: 15px;
  font-weight: 700;
}

.login-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px #3b82f673;
}

.login-btn:disabled {
  opacity: .6;
  transform: none;
}

.login-error {
  color: #fca5a5;
  border-radius: var(--radius);
  background: #ef444426;
  border: 1px solid #ef44444d;
  margin-bottom: 16px;
  padding: 10px 14px;
  font-size: 13px;
}

.driver-card {
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
  cursor: default;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  display: flex;
}

.driver-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.driver-avatar {
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent), #6366f1);
  color: #fff;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  font-size: 16px;
  font-weight: 700;
  display: flex;
}

.driver-name {
  margin-bottom: 2px;
  font-size: 14px;
  font-weight: 700;
}

.driver-phone {
  color: var(--text-secondary);
  font-size: 12px;
}

.driver-stats {
  gap: 12px;
  margin-top: 8px;
  display: flex;
}

.driver-stat {
  color: var(--text-secondary);
  font-size: 12px;
}

.driver-stat strong {
  color: var(--text-primary);
  font-weight: 600;
}

.assign-layout {
  grid-template-columns: 1fr 340px;
  gap: 20px;
  display: grid;
}

.text-right {
  text-align: right;
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--text-secondary);
}

.text-sm {
  font-size: 12px;
}

.font-bold {
  font-weight: 700;
}

.font-semibold {
  font-weight: 600;
}

.mt-1 {
  margin-top: 4px;
}

.mt-2 {
  margin-top: 8px;
}

.mt-4 {
  margin-top: 16px;
}

.mt-6 {
  margin-top: 24px;
}

.mb-2 {
  margin-bottom: 8px;
}

.mb-4 {
  margin-bottom: 16px;
}

.flex {
  display: flex;
}

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

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

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.w-full {
  width: 100%;
}

.divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 16px 0;
}

.color-dot {
  border-radius: 50%;
  width: 8px;
  height: 8px;
  display: inline-block;
}

.rating-stars {
  color: #f59e0b;
  font-size: 12px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 1024px) {
  .charts-grid, .assign-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --sidebar-width: 0px;
  }

  .form-row, .form-row-3 {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .page-content {
    padding: 16px;
  }
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  border-radius: var(--radius-full);
  background: #cbd5e1;
}

::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

.sidebar-nav::-webkit-scrollbar {
  width: 4px;
}

.sidebar-nav::-webkit-scrollbar-track {
  background: none;
}

.sidebar-nav::-webkit-scrollbar-thumb {
  border-radius: var(--radius-full);
  background: #ffffff1f;
}

.sidebar-nav::-webkit-scrollbar-thumb:hover {
  background: #ffffff40;
}

.profile-dropdown-container {
  display: inline-block;
  position: relative;
}

.profile-trigger {
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-fast);
  color: #fff;
  background: none;
  border: none;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  display: flex;
}

.profile-trigger:hover {
  background: #ffffff14;
}

.profile-trigger-avatar {
  color: #fff;
  background: #ffffff26;
  border: 1.5px solid #ffffff4d;
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  box-shadow: 0 2px 4px #00000026;
}

.profile-trigger-name {
  white-space: nowrap;
  text-overflow: ellipsis;
  max-width: 120px;
  font-size: 13px;
  font-weight: 600;
  overflow: hidden;
}

.profile-dropdown-menu {
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  z-index: 1000;
  background: #ffffffe0;
  border: 1px solid #e2e8f0cc;
  width: 250px;
  margin-top: 8px;
  animation: .18s cubic-bezier(.16, 1, .3, 1) slideUp;
  position: absolute;
  top: 100%;
  right: 0;
  overflow: hidden;
  box-shadow: 0 10px 25px -5px #0000001a, 0 8px 10px -6px #0000000d;
}

.profile-dropdown-header {
  border-bottom: 1px solid var(--border);
  background: #f8fafc80;
  flex-direction: column;
  gap: 4px;
  padding: 16px;
  display: flex;
}

.profile-dropdown-header-name {
  color: var(--text-primary);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 700;
  overflow: hidden;
}

.profile-dropdown-header-email {
  color: var(--text-secondary);
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 11.5px;
  overflow: hidden;
}

.profile-dropdown-header-role {
  align-self: flex-start;
  margin-top: 4px;
  display: inline-block;
}

.profile-dropdown-item {
  width: 100%;
  color: var(--text-secondary);
  text-align: left;
  cursor: pointer;
  transition: all var(--transition-fast);
  background: none;
  border: none;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  display: flex;
}

.profile-dropdown-item:hover {
  color: var(--text-primary);
  background: #f1f5f9cc;
  padding-left: 18px;
}

.profile-dropdown-item-danger {
  color: var(--danger);
}

.profile-dropdown-item-danger:hover {
  background: var(--danger-light);
  color: var(--danger);
}

@media print {
  body {
    color: #000 !important;
    background: #fff !important;
    font-size: 12px !important;
  }

  .sidebar, .topbar, .btn, select, input, .no-print, [style*="borderBottom"], .loading-wrapper, .spinner {
    display: none !important;
  }

  .main-content {
    margin-left: 0 !important;
    padding: 0 !important;
  }

  .page-content {
    padding: 0 !important;
  }

  .card {
    box-shadow: none !important;
    background: #fff !important;
    border: none !important;
    margin-bottom: 20px !important;
  }

  .card-header {
    background: #fff !important;
    border-bottom: 2px solid #000 !important;
    padding: 10px 0 !important;
  }

  .card-title {
    color: #000 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
  }

  table {
    border-collapse: collapse !important;
    width: 100% !important;
  }

  th, td {
    color: #000 !important;
    background: #fff !important;
    border: 1px solid #cbd5e1 !important;
    padding: 8px 12px !important;
  }

  th {
    background-color: #f1f5f9 !important;
    font-weight: 700 !important;
  }

  .badge {
    color: #000 !important;
    background: none !important;
    border: 1px solid #94a3b8 !important;
    padding: 2px 6px !important;
  }

  .stats-card {
    box-shadow: none !important;
    background: #fff !important;
    border: 1px solid #cbd5e1 !important;
    padding: 12px 16px !important;
  }

  .print-only {
    display: block !important;
  }

  body.receipt-print-active .app-layout {
    display: none !important;
  }

  body.receipt-print-active .receipt-print-container {
    color: #000 !important;
    background: #fff !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 20px !important;
    display: block !important;
  }
}

.print-only, .receipt-print-container {
  display: none;
}

/*# sourceMappingURL=src_styles_globals_0lh-0-j.css.map*/