/* Main Application Styles */
/* Import order: fonts -> variables -> mixins -> utilities -> components -> pages */
/* Inter Font Family - Local */
@import 'product-panel.css';
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/Inter-Thin-c065f299025dcd885a234242229ba378.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 100;
  font-display: swap;
  src: url("../fonts/Inter-ThinItalic-b302f975500e3869cb804f749f81ab2f.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/Inter-ExtraLight-5a1bca5c83220e9c1a878598a7c091c3.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 200;
  font-display: swap;
  src: url("../fonts/Inter-ExtraLightItalic-c86eb73a04d9ac79665e9c2b715e9b66.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Inter-Light-dd2d968186b9b44ec16f3eaad257580c.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/Inter-LightItalic-40bd9615d96cf7c788fe5c34fc7aee7e.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Inter-Regular-2b34c4de9bd84588e446455bc3474174.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/Inter-Italic-9926156dd674487afdf067d8f23ba37f.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Inter-Medium-f195c91ea6478e6b99874ccb275a3474.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/Inter-MediumItalic-435e02f176208ee65bd50f08a2ebbdce.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Inter-SemiBold-7731f17c0a74a2d10ffd8bed0cbc243f.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/Inter-SemiBoldItalic-af4914667aae009acb0d071beedb80b8.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Inter-Bold-bfa3604899fa6e76f5d241edff33b6b2.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/Inter-BoldItalic-dbcf86219ecc39d308a5ab2b67e04f74.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/Inter-ExtraBold-aacea4c2d9deed79b9452e057783db4d.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 800;
  font-display: swap;
  src: url("../fonts/Inter-ExtraBoldItalic-2cf1396555cd2d7a473a484e449f9604.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/Inter-Black-3a84dc74b28349f0a5ac20daf108228e.woff2") format("woff2");
}
@font-face {
  font-family: "Inter";
  font-style: italic;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/Inter-BlackItalic-e9b8021485a4046014b8a7e7be778dd7.woff2") format("woff2");
}
/* Variables - Design System */
/* Integrated with Bootstrap 5 */
/* Mixins - Reusable Style Patterns */
/* Variables - Design System */
/* Integrated with Bootstrap 5 */
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* Utilities - Helper Classes */
/* Variables - Design System */
/* Integrated with Bootstrap 5 */
/* Mixins - Reusable Style Patterns */
/* Variables - Design System */
/* Integrated with Bootstrap 5 */
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.is-loading {
  position: relative;
  opacity: 0.6;
  pointer-events: none;
}
.is-loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #e5e7eb;
  border-top: 2px solid #6366f1;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

.is-submitting {
  opacity: 0.8;
  pointer-events: none;
}

.loading-overlay {
  position: relative;
  pointer-events: none;
}
.loading-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-hover-lift {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.btn-hover-lift:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.btn-hover-lift:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.btn-hover-lift:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.btn-gradient-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.btn-gradient-primary:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.btn-gradient-primary:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.btn-gradient-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn-gradient-primary:hover:not(:disabled) {
  background: linear-gradient(135deg, #4f46e5 0%, #7a44f5 100%);
}

.btn-gradient-accent {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  color: #ffffff;
  border: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.btn-gradient-accent:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.btn-gradient-accent:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.btn-gradient-accent:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.card-base {
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: 1.25rem 1.25rem;
}

.card-hover {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.card-hover:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.card-interactive {
  background: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  padding: 1.25rem 1.25rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}
.card-interactive:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.text-truncate-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-truncate-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.text-gradient-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-gradient-accent {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.gap-xs {
  gap: 0.25rem;
}

.gap-sm {
  gap: 0.5rem;
}

.gap-md {
  gap: 1rem;
}

.gap-lg {
  gap: 1.5rem;
}

.gap-xl {
  gap: 3rem;
}

.shadow-xs {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important;
}

.shadow-primary {
  box-shadow: 0 10px 25px -5px rgba(99, 102, 241, 0.3) !important;
}

.shadow-success {
  box-shadow: 0 10px 25px -5px rgba(16, 185, 129, 0.3) !important;
}

.shadow-danger {
  box-shadow: 0 10px 25px -5px rgba(239, 68, 68, 0.3) !important;
}

.shadow-warning {
  box-shadow: 0 10px 25px -5px rgba(245, 158, 11, 0.3) !important;
}

.shadow-hover {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.shadow-hover:hover {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1) !important;
}

.z-notifications {
  z-index: 10000 !important;
}

.z-modal {
  z-index: 1050 !important;
}

.z-tooltip {
  z-index: 1070 !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(10px);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.fade-in {
  animation: fadeIn 0.3s ease-in-out;
}

.fade-out {
  animation: fadeOut 0.3s ease-in-out;
}

.slide-in-right {
  animation: slideInRight 0.3s ease-in-out;
}

.slide-in-left {
  animation: slideInLeft 0.3s ease-in-out;
}

.hidden {
  display: none !important;
}

.invisible {
  visibility: hidden !important;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.flex-start {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.flex-column-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.grid-auto-fit {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.grid-2-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.grid-3-cols {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

.grid-4-cols {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.badge-status {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
}
.badge-status.badge-success {
  background-color: #10b981;
  color: #ffffff;
}
.badge-status.badge-success.badge-soft {
  background-color: rgba(16, 185, 129, 0.1);
  color: #10b981;
}
.badge-status.badge-danger {
  background-color: #ef4444;
  color: #ffffff;
}
.badge-status.badge-danger.badge-soft {
  background-color: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.badge-status.badge-warning {
  background-color: #f59e0b;
  color: #111827;
}
.badge-status.badge-warning.badge-soft {
  background-color: rgba(245, 158, 11, 0.1);
  color: #f59e0b;
}
.badge-status.badge-info {
  background-color: #3b82f6;
  color: #ffffff;
}
.badge-status.badge-info.badge-soft {
  background-color: rgba(59, 130, 246, 0.1);
  color: #3b82f6;
}
.badge-status.badge-primary {
  background-color: #6366f1;
  color: #ffffff;
}
.badge-status.badge-primary.badge-soft {
  background-color: rgba(99, 102, 241, 0.1);
  color: #6366f1;
}
.badge-status.badge-secondary {
  background-color: #64748b;
  color: #ffffff;
}
.badge-status.badge-secondary.badge-soft {
  background-color: rgba(100, 116, 139, 0.1);
  color: #64748b;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 50rem;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1;
}
.badge-soft.badge-soft-success {
  background-color: rgba(16, 185, 129, 0.1);
  color: #059669;
}
.badge-soft.badge-soft-danger {
  background-color: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}
.badge-soft.badge-soft-warning {
  background-color: rgba(245, 158, 11, 0.1);
  color: #d97706;
}
.badge-soft.badge-soft-info {
  background-color: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}
.badge-soft.badge-soft-primary {
  background-color: rgba(99, 102, 241, 0.1);
  color: #4f46e5;
}

.bg-gradient-primary {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #ffffff;
}

.bg-gradient-accent {
  background: linear-gradient(135deg, #06b6d4 0%, #0891b2 100%);
  color: #ffffff;
}

.bg-gradient-dark {
  background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
  color: #ffffff;
}

.border-radius-lg {
  border-radius: 0.75rem !important;
}

.border-radius-xl {
  border-radius: 1rem !important;
}

.border-radius-2xl {
  border-radius: 1.5rem !important;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 0.5rem;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #9ca3af;
  border-radius: 0.5rem;
}
.custom-scrollbar::-webkit-scrollbar-thumb:hover {
  background: #808998;
}

.custom-scrollbar-thin::-webkit-scrollbar {
  width: 4px;
  height: 4px;
}
.custom-scrollbar-thin::-webkit-scrollbar-track {
  background: #f3f4f6;
  border-radius: 0.5rem;
}
.custom-scrollbar-thin::-webkit-scrollbar-thumb {
  background: #d1d5db;
  border-radius: 0.5rem;
}
.custom-scrollbar-thin::-webkit-scrollbar-thumb:hover {
  background: #b4bbc5;
}

.hover-lift {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-lift:hover {
  transform: translateY(-2px);
}

.hover-grow {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-grow:hover {
  transform: scale(1.05);
}

.hover-shadow {
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
.hover-shadow:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.focus-ring-primary:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  border-color: #6366f1;
}

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

.focus-ring-danger:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
  border-color: #ef4444;
}

/* Components Styles */
/* Notifications Container */
.notifications-container {
  z-index: 10000;
}

/* Product Images */
.product-image--thumbnail {
  max-width: 300px;
  max-height: 300px;
  object-fit: contain;
}
.product-image--small {
  width: 50px;
  height: 50px;
  object-fit: cover;
}
.product-image--icon {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* Status Badge */
.status-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.status-badge[style*=background-color] {
  color: white;
}

/* Empty States */
.empty-state {
  text-align: center;
  padding: 3rem 1rem;
}
.empty-state__icon {
  font-size: 3rem;
  color: #6c757d;
  margin-bottom: 1rem;
}
.empty-state__title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.empty-state__text {
  color: #6c757d;
}

/* Image Placeholders */
.image-placeholder {
  background-color: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-placeholder--small {
  width: 50px;
  height: 50px;
}
.image-placeholder--medium {
  width: 200px;
  height: 200px;
}
.image-placeholder--large {
  max-width: 300px;
  max-height: 300px;
}

/* Tables */
.table__delivery-col {
  min-width: 300px;
}

/* Alert Hidden */
.alert-hidden {
  display: none;
}

/* Loading States */
.is-loading {
  position: relative;
  pointer-events: none;
  opacity: 0.6;
}
.is-loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* Modal Forms */
.modal-form__delete {
  display: inline-block;
}

/* Progress Bars */
.progress--thin {
  height: 6px;
}
.progress--medium {
  height: 8px;
}

/* Card Sections Hidden */
.card-section-hidden {
  display: none;
}

/* Login Page Styles */
/* Variables - Design System */
/* Integrated with Bootstrap 5 */
/* Mixins - Reusable Style Patterns */
/* Variables - Design System */
/* Integrated with Bootstrap 5 */
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
body.login-page {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  min-height: 100vh;
}
body.login-page .container-fluid {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
body.login-page .container-fluid .row {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
}

.login-container {
  background: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.3);
  width: 100%;
  overflow: hidden;
}

.login-header {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  padding: 3rem 1.5rem;
  text-align: center;
  color: #ffffff;
}
.login-header h1 {
  font-size: 1.53125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.login-header p {
  font-size: 0.8125rem;
  opacity: 0.9;
  margin-bottom: 0;
}

.login-body {
  padding: 3rem 1.5rem;
}
.login-body .form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #374151;
  font-size: 0.8125rem;
}
.login-body .form-control {
  width: 100%;
  padding: 0.625rem 0.875rem;
  font-size: 0.875rem;
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
  color: #111827;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}
.login-body .form-control:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.login-body .form-control:disabled {
  background-color: #f3f4f6;
  cursor: not-allowed;
  opacity: 0.6;
}
.login-body .form-control:focus {
  outline: none;
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}
.login-body .form-check {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}
.login-body .form-check-input {
  width: 18px;
  height: 18px;
  margin-right: 0.5rem;
  cursor: pointer;
}
.login-body .form-check-input:checked {
  background-color: #6366f1;
  border-color: #6366f1;
}
.login-body .form-check-input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
  border-color: #6366f1;
}
.login-body .form-check-label {
  font-size: 0.8125rem;
  color: #4b5563;
  cursor: pointer;
  user-select: none;
}
.login-body .alert {
  padding: 1rem 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.8125rem;
}
.login-body .alert-danger {
  background-color: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
}
.login-body .alert-info {
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  color: #2563eb;
}
.login-body .alert-info a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}
.login-body .alert-info a:hover {
  text-decoration: underline;
}

.form-group {
  margin-bottom: 1.5rem;
}

.btn-login {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
  color: #ffffff;
  border: none;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  width: 100%;
  padding: calc(1rem + 2px);
  font-size: 0.9296875rem;
  font-weight: 600;
}
.btn-login:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}
.btn-login:active:not(:disabled) {
  transform: translateY(0);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
}
.btn-login:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.btn-login:hover:not(:disabled) {
  background: linear-gradient(135deg, #4f46e5 0%, #7a44f5 100%);
}
.btn-login:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.login-footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #f3f4f6;
  color: #4b5563;
  font-size: calc(0.8125rem - 1px);
}

@media (max-width: 480px) {
  .login-header {
    padding: 1.5rem 1rem;
  }
  .login-header h1 {
    font-size: 1.3125rem;
  }
  .login-body {
    padding: 1.5rem 1rem;
  }
}
/* Order Form Styles */
.order-form-container .card {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  margin-bottom: 2rem;
}
.order-form-container .product-search-wrapper {
  position: relative;
}
.order-form-container .product-search-wrapper .product-search-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  max-height: 300px;
  overflow-y: auto;
  background: white;
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 0.25rem 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.order-form-container .product-search-wrapper .product-search-dropdown .list-group-item {
  cursor: pointer;
  border-left: none;
  border-right: none;
}
.order-form-container .product-search-wrapper .product-search-dropdown .list-group-item:first-child {
  border-top: none;
}
.order-form-container .product-search-wrapper .product-search-dropdown .list-group-item:last-child {
  border-bottom: none;
  border-radius: 0 0 0.25rem 0.25rem;
}
.order-form-container .product-search-wrapper .product-search-dropdown .list-group-item:hover {
  background-color: #f8f9fa;
}
.order-form-container .available-products-container,
.order-form-container .selected-products-container {
  max-height: 500px;
  overflow-y: auto;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  background-color: #fff;
}
.order-form-container .available-products-container .table,
.order-form-container .selected-products-container .table {
  margin-bottom: 0;
}
.order-form-container .available-products-container::-webkit-scrollbar,
.order-form-container .selected-products-container::-webkit-scrollbar {
  width: 8px;
}
.order-form-container .available-products-container::-webkit-scrollbar-track,
.order-form-container .selected-products-container::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.order-form-container .available-products-container::-webkit-scrollbar-thumb,
.order-form-container .selected-products-container::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.order-form-container .available-products-container::-webkit-scrollbar-thumb:hover,
.order-form-container .selected-products-container::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.order-form-container .available-products-container .add-to-order-btn {
  min-width: 35px;
  padding: 0.25rem 0.5rem;
  font-weight: bold;
}
.order-form-container .available-products-container .add-to-order-btn.disabled {
  cursor: not-allowed;
}
.order-form-container .available-products-container tbody tr {
  transition: background-color 0.15s ease;
}
.order-form-container .available-products-container tbody tr:hover:not(:has(td[colspan])) {
  background-color: #f8f9fa;
}
.order-form-container .products-table .quantity-input,
.order-form-container .products-table .price-input {
  min-width: 70px;
}
.order-form-container .products-table .remove-product-btn {
  padding: 0.25rem 0.5rem;
  font-size: 1.2rem;
  line-height: 1;
  min-width: 35px;
}
.order-form-container .products-table tbody tr {
  transition: background-color 0.2s;
}
.order-form-container .products-table tbody tr:hover:not(:has(td[colspan])) {
  background-color: #fff3cd;
}
.order-form-container .cost-summary {
  background-color: #f8f9fa;
  padding: 1.5rem;
  border-radius: 0.25rem;
}
.order-form-container .cost-summary .form-label {
  font-weight: 600;
}
.order-form-container .cost-summary #final-price {
  font-weight: 700;
  font-size: 1.1rem;
  background-color: #e9ecef;
}
.order-form-container .customer-section h5 {
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #dee2e6;
  color: #495057;
  font-weight: 600;
}
.order-form-container .customer-section .position-relative {
  position: relative;
}
.order-form-container .customer-section .customer-suggestions-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1050;
  max-height: 400px;
  overflow-y: auto;
  background: white;
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 0.25rem 0.25rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  margin-top: -1px;
}
.order-form-container .customer-section .customer-suggestions-dropdown .list-group-item {
  cursor: pointer;
  border-left: none;
  border-right: none;
  padding: 0.75rem 1rem;
}
.order-form-container .customer-section .customer-suggestions-dropdown .list-group-item:first-child {
  border-top: none;
}
.order-form-container .customer-section .customer-suggestions-dropdown .list-group-item:last-child {
  border-bottom: none;
  border-radius: 0 0 0.25rem 0.25rem;
}
.order-form-container .customer-section .customer-suggestions-dropdown .list-group-item:hover {
  background-color: #e9ecef;
}
.order-form-container .customer-section .customer-suggestions-dropdown .list-group-item strong {
  color: #0d6efd;
}
.order-form-container .customer-section .customer-suggestions-dropdown .list-group-item small {
  display: block;
  margin-top: 0.25rem;
}
.order-form-container .customer-section .customer-suggestions-dropdown::-webkit-scrollbar {
  width: 8px;
}
.order-form-container .customer-section .customer-suggestions-dropdown::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.order-form-container .customer-section .customer-suggestions-dropdown::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
.order-form-container .customer-section .customer-suggestions-dropdown::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.order-form-container .col-md-6 h5 {
  color: #495057;
  font-weight: 600;
  border-bottom: 2px solid #0d6efd;
  padding-bottom: 0.5rem;
}

.stats-card {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stats-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}
.stats-card.blue {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}
.stats-card.green {
  background: linear-gradient(135deg, #06d6a0 0%, #118ab2 100%);
}
.stats-card.orange {
  background: linear-gradient(135deg, #f77f00 0%, #d62828 100%);
}
.stats-card.purple {
  background: linear-gradient(135deg, #7209b7 0%, #560bad 100%);
}
.stats-card.teal {
  background: linear-gradient(135deg, #06d6a0 0%, #073b4c 100%);
}
.stats-card h3 {
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 10px;
  opacity: 0.9;
}
.stats-card .value {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 5px;
}
.stats-card .icon {
  font-size: 3rem;
  opacity: 0.3;
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}

.chart-container {
  background: white;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  min-height: 400px;
}
.chart-container h4 {
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.product-table {
  background: white;
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.product-table h4 {
  color: #333;
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.3rem;
}

.product-item {
  display: flex;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}
.product-item:hover {
  background-color: #f8f9fa;
}
.product-item:last-child {
  border-bottom: none;
}

.product-rank {
  font-size: 1.5rem;
  font-weight: bold;
  color: #667eea;
  width: 50px;
  text-align: center;
}

.product-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 15px;
}

.product-info {
  flex: 1;
}

.product-name {
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.product-model {
  font-size: 0.9rem;
  color: #888;
}

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

.product-count {
  font-size: 1.2rem;
  font-weight: bold;
  color: #667eea;
}

.product-quantity {
  font-size: 0.9rem;
  color: #888;
}

.product-revenue {
  font-size: 1rem;
  color: #06d6a0;
  font-weight: 600;
}

.statistics-page .page-header {
  margin-bottom: 30px;
}
.statistics-page .page-header h1 {
  color: #333;
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.statistics-page .page-header p {
  color: #888;
  font-size: 1.1rem;
}

.badge-metric {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 5px;
}
.badge-metric.badge-success {
  background-color: rgba(255, 255, 255, 0.3);
  color: white;
}

.period-filter-container {
  background: white;
  border-radius: 15px;
  padding: 20px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

.period-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.period-btn {
  padding: 12px 24px;
  border: 2px solid #e0e0e0;
  background: white;
  border-radius: 25px;
  font-weight: 600;
  color: #666;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}
.period-btn i {
  font-size: 1rem;
}
.period-btn:hover {
  border-color: #667eea;
  color: #667eea;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
}
.period-btn.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-color: #667eea;
  color: white;
  box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.custom-date-picker {
  display: flex;
  gap: 15px;
  margin-top: 20px;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
}

.date-input-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.date-input-group label {
  font-weight: 600;
  color: #333;
  font-size: 0.9rem;
}
.date-input-group input {
  border-radius: 10px;
  border: 2px solid #e0e0e0;
  padding: 10px 15px;
  font-size: 0.95rem;
}
.date-input-group input:focus {
  border-color: #667eea;
  outline: none;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

/* Base Styles */
:root {
  --bs-body-font-size: 14px;
  --bs-btn-font-size: 14px;
}

/* Pagination */
.pagination .page {
  margin: 0 5px;
}
.pagination .page a {
  text-decoration: none;
}

/*# sourceMappingURL=app.output.css.map */
