@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap');

body {
  font-family: 'Cairo', sans-serif;
  background-color: #f8fafc;
  color: #334155;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Soft Shadow */
.shadow-soft {
  box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05);
}

/* Custom Scrollbar for Webkit */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
::-webkit-scrollbar-track {
  background: transparent;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* Hide scrollbar utility */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Custom Scrollbar Class */
.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}
.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
  background-color: #e2e8f0;
  border-radius: 20px;
}

/* Standardized Button Classes (converted from @apply) */
.btn-primary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #e87722;
  color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: background-color 0.15s;
}
.btn-primary:hover {
  background-color: #c15b0f;
}

.btn-secondary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #f3f4f6;
  color: #374151;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: background-color 0.15s;
}
.btn-secondary:hover {
  background-color: #e5e7eb;
}

.btn-danger {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: #dc2626;
  color: white;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
  font-weight: 700;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: background-color 0.15s;
}
.btn-danger:hover {
  background-color: #b91c1c;
}

.btn-import {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #15803d;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
  font-size: 0.875rem;
  font-weight: 700;
  transition: background-color 0.15s;
  cursor: pointer;
}
.btn-import:hover {
  background-color: #dcfce7;
}

.btn-export {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #faf5ff;
  border: 1px solid #e9d5ff;
  color: #7e22ce;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
  font-size: 0.875rem;
  font-weight: 700;
  transition: background-color 0.15s;
}
.btn-export:hover {
  background-color: #f3e8ff;
}

.btn-print {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  box-shadow: 0 1px 2px 0 rgba(0,0,0,0.05);
  font-size: 0.875rem;
  font-weight: 700;
  transition: background-color 0.15s;
}
.btn-print:hover {
  background-color: #fee2e2;
}

.btn-icon-edit {
  padding: 0.375rem;
  color: #2563eb;
  border-radius: 0.25rem;
  transition: background-color 0.15s;
}
.btn-icon-edit:hover {
  background-color: #eff6ff;
}

.btn-icon-delete {
  padding: 0.375rem;
  color: #dc2626;
  border-radius: 0.25rem;
  transition: background-color 0.15s;
}
.btn-icon-delete:hover {
  background-color: #fef2f2;
}
