/* TailwindCSS Base Styles */
*,
::before,
::after {
  box-sizing: border-box;
  border-width: 0;
  border-style: solid;
  border-color: #e5e7eb;
}

::before,
::after {
  --tw-content: '';
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
  tab-size: 4;
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-feature-settings: normal;
  font-variation-settings: normal;
}

body {
  margin: 0;
  line-height: inherit;
}

hr {
  height: 0;
  color: inherit;
  border-top-width: 1px;
}

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

a {
  color: inherit;
  text-decoration: inherit;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  text-indent: 0;
  border-color: inherit;
  border-collapse: collapse;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-size: 100%;
  font-weight: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
}

button,
select {
  text-transform: none;
}

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  appearance: button;
  -webkit-appearance: button;
  background-color: transparent;
  background-image: none;
}

:-moz-focusring {
  outline: auto;
}

:-moz-ui-invalid {
  box-shadow: none;
}

progress {
  vertical-align: baseline;
}

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

[type='search'] {
  appearance: textfield;
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

summary {
  display: list-item;
}

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

dialog {
  padding: 0;
}

textarea {
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #9ca3af;
}

button,
[role="button"] {
  cursor: pointer;
}

disabled {
  cursor: default;
}

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
}

img,
video {
  max-width: 100%;
  height: auto;
}

[hidden] {
  display: none;
}

/* Custom CSS Variables */
:root {
  --color-primary: 31 60 124;
  --color-primary-dark: 23 48 97;
  --color-ink: 19 22 47;
  --color-bg: 255 255 255;
  --color-surface-soft: 244 246 253;
  --color-fg: 19 22 47;
  --color-fg-muted: 71 85 105;
  --radius: 12px;
  --shadow-md: 0 4px 12px rgba(0,0,0,.08);
}

.dark {
  --color-bg: 17 24 39;
  --color-fg: 241 245 249;
}

/* TailwindCSS Components */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.pointer-events-none {
  pointer-events: none;
}

.pointer-events-auto {
  pointer-events: auto;
}

.visible {
  visibility: visible;
}

.invisible {
  visibility: hidden;
}

.collapse {
  visibility: collapse;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.sticky {
  position: sticky;
}

.inset-0 {
  inset: 0px;
}

.inset-x-0 {
  left: 0px;
  right: 0px;
}

.inset-y-0 {
  top: 0px;
  bottom: 0px;
}

.top-0 {
  top: 0px;
}

.right-0 {
  right: 0px;
}

.bottom-0 {
  bottom: 0px;
}

.left-0 {
  left: 0px;
}

.top-full {
  top: 100%;
}

.right-full {
  right: 100%;
}

.bottom-full {
  bottom: 100%;
}

.left-full {
  left: 100%;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-30 {
  z-index: 30;
}

.z-40 {
  z-index: 40;
}

.z-50 {
  z-index: 50;
}

.z-auto {
  z-index: auto;
}

/* Button Components */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background-color: rgb(31, 60, 124);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.btn-primary:hover {
  background-color: rgb(23, 48, 97);
  transform: translateY(-1px);
  box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.15);
}

.btn-primary:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background-color: white;
  color: rgb(55, 65, 81);
  border: 1px solid #d1d5db;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.btn-secondary:hover {
  background-color: #f9fafb;
  border-color: #9ca3af;
  transform: translateY(-1px);
}

.btn-danger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  background-color: #dc2626;
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.btn-danger:hover {
  background-color: #b91c1c;
  transform: translateY(-1px);
}

/* Card Components */
.card {
  border-radius: 12px;
  background-color: white;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 24px;
  margin-bottom: 1.5rem;
}

.card:last-child {
  margin-bottom: 0;
}

.card-header {
  padding: 16px 24px;
  border-bottom: 1px solid #e5e7eb;
}

.card-body {
  padding: 16px 24px;
}

.card-footer {
  padding: 16px 24px;
  border-top: 1px solid #e5e7eb;
  background-color: #f9fafb;
  border-radius: 0 0 12px 12px;
}

/* Form Components */
.form-input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  color: #111827;
  background-color: white;
  transition: all 0.2s ease-in-out;
}

.form-input:focus {
  outline: none;
  border-color: rgb(31, 60, 124);
  box-shadow: 0 0 0 3px rgba(31, 60, 124, 0.1);
}

.form-input:disabled {
  background-color: #f9fafb;
  color: #6b7280;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 8px;
}

.form-error {
  font-size: 14px;
  color: #dc2626;
  margin-top: 4px;
}

/* Navigation Components */
.nav-link {
  color: white;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s ease-in-out;
  text-decoration: none;
}

.nav-link:hover {
  color: #e5e7eb;
}

/* Navigation Dropdown Fixes */
.nav-dropdown-menu {
  white-space: nowrap;
  min-width: max-content;
  width: auto;
}

.nav-dropdown-menu .nav-dropdown-item {
  white-space: nowrap;
  display: flex;
  align-items: center;
  min-width: max-content;
}

.nav-dropdown-menu .nav-dropdown-item i {
  flex-shrink: 0;
  margin-right: 0.5rem;
}

.nav-dropdown-menu .nav-dropdown-item span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.nav-link-active {
  color: white;
  background-color: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
}

/* Utility Classes */
.section-soft {
  background-color: rgb(244, 246, 253);
}

.heading {
  color: rgb(19, 22, 47);
  font-weight: 600;
}

.text-muted {
  color: #6b7280;
}

/* Spinner */
.spinner {
  animation: spin 1s linear infinite;
  border-radius: 50%;
  border: 2px solid #e5e7eb;
  border-top-color: rgb(31, 60, 124);
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Alert Components */
.alert {
  border-radius: 8px;
  padding: 16px;
  border: 1px solid;
}

.alert-success {
  background-color: #f0fdf4;
  border-color: #bbf7d0;
  color: #166534;
}

.alert-error {
  background-color: #fef2f2;
  border-color: #fecaca;
  color: #991b1b;
}

.alert-warning {
  background-color: #fffbeb;
  border-color: #fed7aa;
  color: #92400e;
}

.alert-info {
  background-color: #eff6ff;
  border-color: #bfdbfe;
  color: #1e40af;
}

/* Utility Classes */
.text-primary {
  color: rgb(31, 60, 124);
}

.bg-primary {
  background-color: rgb(31, 60, 124);
}

.bg-primary-dark {
  background-color: rgb(23, 48, 97);
}

.text-ink {
  color: rgb(19, 22, 47);
}

.bg-surface-soft {
  background-color: rgb(244, 246, 253);
}

.rounded-xl {
  border-radius: 12px;
}

.shadow-md {
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
}

/* Essential TailwindCSS Utilities */
.hidden { display: none !important; }
.block { display: block !important; }
.inline-block { display: inline-block !important; }
.flex { display: flex !important; }
.inline-flex { display: inline-flex !important; }
.grid { display: grid !important; }

/* Flexbox */
.items-center { align-items: center !important; }
.items-start { align-items: flex-start !important; }
.items-end { align-items: flex-end !important; }
.justify-center { justify-content: center !important; }
.justify-between { justify-content: space-between !important; }
.justify-end { justify-content: flex-end !important; }
.justify-start { justify-content: flex-start !important; }
.flex-col { flex-direction: column !important; }
.flex-row { flex-direction: row !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-1 { flex: 1 1 0% !important; }

/* Grid */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)) !important; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
.gap-1 { gap: 0.25rem !important; }
.gap-2 { gap: 0.5rem !important; }
.gap-3 { gap: 0.75rem !important; }
.gap-4 { gap: 1rem !important; }
.gap-6 { gap: 1.5rem !important; }
.gap-8 { gap: 2rem !important; }

/* Spacing */
.p-1 { padding: 0.25rem !important; }
.p-2 { padding: 0.5rem !important; }
.p-3 { padding: 0.75rem !important; }
.p-4 { padding: 1rem !important; }
.p-5 { padding: 1.25rem !important; }
.p-6 { padding: 1.5rem !important; }
.p-8 { padding: 2rem !important; }
.px-3 { padding-left: 0.75rem !important; padding-right: 0.75rem !important; }
.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
.py-1 { padding-top: 0.25rem !important; padding-bottom: 0.25rem !important; }
.py-2 { padding-top: 0.5rem !important; padding-bottom: 0.5rem !important; }
.py-3 { padding-top: 0.75rem !important; padding-bottom: 0.75rem !important; }
.py-4 { padding-top: 1rem !important; padding-bottom: 1rem !important; }
.py-8 { padding-top: 2rem !important; padding-bottom: 2rem !important; }
.py-12 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.pl-3 { padding-left: 0.75rem !important; }
.pl-10 { padding-left: 2.5rem !important; }
.pr-3 { padding-right: 0.75rem !important; }
.mr-1 { margin-right: 0.25rem !important; }
.mr-2 { margin-right: 0.5rem !important; }
.mr-4 { margin-right: 1rem !important; }
.ml-1 { margin-left: 0.25rem !important; }
.ml-4 { margin-left: 1rem !important; }
.mt-2 { margin-top: 0.5rem !important; }
.mt-4 { margin-top: 1rem !important; }
.mt-6 { margin-top: 1.5rem !important; }
.mb-2 { margin-bottom: 0.5rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-6 { margin-bottom: 1.5rem !important; }
.mb-8 { margin-bottom: 2rem !important; }

/* Width & Height */
.w-full { width: 100% !important; }
.w-10 { width: 2.5rem !important; }
.w-12 { width: 3rem !important; }
.w-48 { width: 12rem !important; }
.w-96 { width: 24rem !important; }
.h-10 { height: 2.5rem !important; }
.h-12 { height: 3rem !important; }
.h-16 { height: 4rem !important; }
.h-full { height: 100% !important; }
.min-h-screen { min-height: 100vh !important; }
.max-w-md { max-width: 28rem !important; }
.max-w-2xl { max-width: 42rem !important; }
.max-w-7xl { max-width: 80rem !important; }

/* Positioning */
.relative { position: relative !important; }
.absolute { position: absolute !important; }
.fixed { position: fixed !important; }
.inset-0 { top: 0 !important; right: 0 !important; bottom: 0 !important; left: 0 !important; }
.top-full { top: 100% !important; }
.left-0 { left: 0 !important; }
.right-0 { right: 0 !important; }
.z-50 { z-index: 50 !important; }
.z-40 { z-index: 40 !important; }
.z-30 { z-index: 30 !important; }

/* Overflow */
.overflow-x-auto { overflow-x: auto !important; }
.overflow-y-auto { overflow-y: auto !important; }
.overflow-hidden { overflow: hidden !important; }

/* Border */
.border { border-width: 1px !important; }
.border-t { border-top-width: 1px !important; }
.border-gray-200 { border-color: #e5e7eb !important; }
.border-gray-300 { border-color: #d1d5db !important; }
.rounded-md { border-radius: 0.375rem !important; }
.rounded-lg { border-radius: 0.5rem !important; }
.rounded-full { border-radius: 9999px !important; }

/* Background */
.bg-white { background-color: #ffffff !important; }
.bg-gray-50 { background-color: #f9fafb !important; }
.bg-gray-100 { background-color: #f3f4f6 !important; }
.bg-gray-600 { background-color: #4b5563 !important; }
.bg-opacity-50 { background-color: rgba(75, 85, 99, 0.5) !important; }
.bg-yellow-50 { background-color: #fefce8 !important; }
.bg-yellow-100 { background-color: #fef3c7 !important; }
.bg-blue-100 { background-color: #dbeafe !important; }
.bg-green-100 { background-color: #dcfce7 !important; }
.bg-red-100 { background-color: #fee2e2 !important; }

/* Text */
.text-white { color: #ffffff !important; }
.text-gray-400 { color: #9ca3af !important; }
.text-gray-500 { color: #6b7280 !important; }
.text-gray-600 { color: #4b5560 !important; }
.text-gray-700 { color: #374151 !important; }
.text-gray-900 { color: #111827 !important; }
.text-red-500 { color: #ef4444 !important; }
.text-sm { font-size: 0.875rem !important; }
.text-lg { font-size: 1.125rem !important; }
.text-xl { font-size: 1.25rem !important; }
.text-2xl { font-size: 1.5rem !important; }
.text-3xl { font-size: 1.875rem !important; }
.text-4xl { font-size: 2.25rem !important; }
.text-6xl { font-size: 3.75rem !important; }
.font-medium { font-weight: 500 !important; }
.font-semibold { font-weight: 600 !important; }
.font-bold { font-weight: 700 !important; }
.text-center { text-align: center !important; }
.text-left { text-align: left !important; }

/* Shadow */
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; }
.shadow-sm { box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05) !important; }

/* Responsive */
@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem !important; padding-right: 1.5rem !important; }
  .sm\:px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
  .sm\:flex-row { flex-direction: row !important; }
  .sm\:items-center { align-items: center !important; }
  .sm\:justify-between { justify-content: space-between !important; }
  .sm\:mt-0 { margin-top: 0 !important; }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)) !important; }
  .md\:flex { display: flex !important; }
  .md\:hidden { display: none !important; }
}

@media (min-width: 1024px) {
  .lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)) !important; }
  .lg\:px-8 { padding-left: 2rem !important; padding-right: 2rem !important; }
}

/* Space Utilities */
.space-y-1 > * + * { margin-top: 0.25rem; }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }
.space-y-8 > * + * { margin-top: 2rem; }
.space-x-1 > * + * { margin-left: 0.25rem; }
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-3 > * + * { margin-left: 0.75rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-8 > * + * { margin-left: 2rem; }

/* Transition */
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-200 { transition-duration: 200ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* Transform */
.transform { transform: translateZ(0); }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.rotate-180 { transform: rotate(180deg); }

/* Focus States */
.focus\:outline-none:focus { outline: none; }
.focus\:ring-primary:focus { box-shadow: 0 0 0 3px rgba(31, 60, 124, 0.1); }
.focus\:border-primary:focus { border-color: rgb(31, 60, 124); }

/* Hover States */
.hover\:text-gray-200:hover { color: #e5e7eb; }
.hover\:text-gray-600:hover { color: #4b5563; }
.hover\:bg-gray-100:hover { background-color: #f3f4f6; }
.hover\:bg-gray-200:hover { background-color: #e5e7eb; }
.hover\:text-primary:hover { color: rgb(31, 60, 124); }
.hover\:text-primary-dark:hover { color: rgb(23, 48, 97); }

/* Disabled States */
.disabled\:opacity-50:disabled { opacity: 0.5; }
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed; }

/* Additional Utilities */
.pointer-events-none { pointer-events: none; }
.cursor-pointer { cursor: pointer; }
.cursor-not-allowed { cursor: not-allowed; }
.select-none { user-select: none; }
.truncate { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

/* Dashboard Specific Styles */
.dashboard-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 24px;
  transition: all 0.2s ease-in-out;
}

.dashboard-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-1px);
}

.metric-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 20px;
  transition: all 0.2s ease-in-out;
}

.metric-card:hover {
  box-shadow: 0 6px 8px -1px rgba(0, 0, 0, 0.15);
}

.metric-icon {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.metric-value {
  font-size: 24px;
  font-weight: 600;
  color: rgb(19, 22, 47);
  margin-top: 4px;
}

.metric-label {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 4px;
}

/* Summary Card Styles */
.summary-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 24px;
}

.summary-title {
  font-size: 18px;
  font-weight: 600;
  color: rgb(19, 22, 47);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
}

.summary-title i {
  margin-right: 8px;
  font-size: 16px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #f3f4f6;
}

.summary-item:last-child {
  border-bottom: none;
}

.summary-item-label {
  font-size: 14px;
  color: #6b7280;
}

.summary-item-value {
  font-size: 14px;
  font-weight: 600;
  color: rgb(19, 22, 47);
}

/* Priority Colors */
.priority-critical { color: #dc2626 !important; }
.priority-high { color: #d97706 !important; }
.priority-medium { color: #059669 !important; }
.priority-low { color: #6b7280 !important; }

/* Status Colors */
.status-pending { color: #d97706 !important; }
.status-inprogress { color: #2563eb !important; }
.status-completed { color: #059669 !important; }
.status-overdue { color: #dc2626 !important; }

/* Background Colors for Icons */
.bg-yellow-100 { background-color: #fef3c7 !important; }
.bg-blue-100 { background-color: #dbeafe !important; }
.bg-green-100 { background-color: #dcfce7 !important; }
.bg-red-100 { background-color: #fee2e2 !important; }
.bg-purple-100 { background-color: #f3e8ff !important; }
.bg-orange-100 { background-color: #fed7aa !important; }

/* Text Colors for Icons */
.text-yellow-600 { color: #d97706 !important; }
.text-blue-600 { color: #2563eb !important; }
.text-green-600 { color: #059669 !important; }
.text-red-600 { color: #dc2626 !important; }
.text-purple-600 { color: #9333ea !important; }
.text-orange-600 { color: #ea580c !important; }

/* Button Styles */
.btn-view-all {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background-color: #fef3c7;
  color: #92400e;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease-in-out;
  border: none;
  cursor: pointer;
}

.btn-view-all:hover {
  background-color: #fde68a;
  transform: translateY(-1px);
}

.btn-view-all i {
  margin-right: 6px;
  font-size: 14px;
}

/* Grid Layout Improvements */
/* Grid Layouts */
.grid-metrics {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 24px;
}

@media (min-width: 768px) {
  .grid-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .grid-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.grid-summary {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .grid-summary {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Grid içindeki kartların margin'lerini sıfırla */
.grid-metrics .card,
.grid-summary .card {
  margin-bottom: 0;
  height: 100%; /* Kartların yüksekliklerini eşitle */
  display: flex;
  flex-direction: column;
}

.grid-metrics .card:last-child,
.grid-summary .card:last-child {
  margin-bottom: 0;
}

/* Grid içindeki kartların içeriğini flex ile düzenle */
.grid-metrics .card > *,
.grid-summary .card > * {
  flex: 1;
}

/* Progress Bar Styles */
.progress-bar {
  width: 100%;
  height: 12px;
  background-color: #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-bar-fill {
  height: 100%;
  background-color: #10b981;
  border-radius: 6px;
  transition: width 0.3s ease-in-out;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-bar-fill.warning {
  background-color: #f59e0b;
}

.progress-bar-fill.danger {
  background-color: #ef4444;
}

/* Flexbox Utilities */
.flex-shrink-0 { flex-shrink: 0 !important; }
.flex-grow { flex-grow: 1 !important; }

/* Additional Spacing */
.mt-1 { margin-top: 0.25rem !important; }
.mt-3 { margin-top: 0.75rem !important; }
.mt-5 { margin-top: 1.25rem !important; }
.mt-8 { margin-top: 2rem !important; }
.mb-1 { margin-bottom: 0.25rem !important; }
.mb-3 { margin-bottom: 0.75rem !important; }
.mb-5 { margin-bottom: 1.25rem !important; }
.mb-8 { margin-bottom: 2rem !important; }

/* Text Sizes */
.text-xs { font-size: 0.75rem !important; }
.text-base { font-size: 1rem !important; }

/* Font Weights */
.font-normal { font-weight: 400 !important; }
.font-light { font-weight: 300 !important; }

/* Line Heights */
.leading-tight { line-height: 1.25 !important; }
.leading-normal { line-height: 1.5 !important; }
.leading-relaxed { line-height: 1.625 !important; }

/* Border Radius */
.rounded-sm { border-radius: 0.125rem !important; }
.rounded { border-radius: 0.25rem !important; }
.rounded-xl { border-radius: 0.75rem !important; }
.rounded-2xl { border-radius: 1rem !important; }

/* Opacity */
.opacity-75 { opacity: 0.75 !important; }
.opacity-100 { opacity: 1 !important; }

/* Additional Background Colors */
.bg-gray-200 { background-color: #e5e7eb !important; }
.bg-gray-300 { background-color: #d1d5db !important; }
.bg-gray-800 { background-color: #1f2937 !important; }
.bg-gray-900 { background-color: #111827 !important; }

/* Additional Text Colors */
.text-gray-800 { color: #1f2937 !important; }
.text-gray-200 { color: #e5e7eb !important; }
.text-gray-300 { color: #d1d5db !important; }

/* Border Colors */
.border-gray-100 { border-color: #f3f4f6 !important; }
.border-gray-400 { border-color: #9ca3af !important; }
.border-gray-500 { border-color: #6b7280 !important; }

/* Ring Colors */
.ring-primary { --tw-ring-color: rgb(31, 60, 124) !important; }
.ring-gray-500 { --tw-ring-color: #6b7280 !important; }

/* Container System */
.container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

/* Page Layout */
.page-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .page-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .page-container {
    padding: 0 2rem;
  }
}

/* Dashboard Specific Container */
.dashboard-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

@media (min-width: 640px) {
  .dashboard-container {
    padding: 2rem 1.5rem;
  }
}

@media (min-width: 1024px) {
  .dashboard-container {
    padding: 2rem 2rem;
  }
}

/* Content Centering */
.content-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.content-start {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}

/* Main Content Area */
.main-content {
  flex: 1;
  padding: 0 0 2rem 0;
}

@media (min-width: 1024px) {
  .main-content {
    padding: 0 0 3rem 0;
  }
}

/* Section Spacing */
.section {
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.section:first-child {
  margin-top: 0;
}

.section:last-child {
  margin-bottom: 0;
}

/* Card Container */
.card-container {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .card-container {
    gap: 2rem;
  }
}

/* Form Container */
.form-container {
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
}

@media (min-width: 640px) {
  .form-container {
    padding: 3rem;
  }
}

/* Table Container */
.table-container {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  background-color: white;
}

/* Modal Container */
.modal-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
}

@media (min-width: 640px) {
  .modal-container {
    max-width: 600px;
    padding: 3rem;
  }
}

/* Navigation Container */
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .nav-container {
    padding: 0 1.5rem;
  }
}

@media (min-width: 1024px) {
  .nav-container {
    padding: 0 2rem;
  }
}

/* TailwindCSS Form Styles */
.form-input {
  appearance: none;
  background-color: #fff;
  border-color: #d1d5db;
  border-width: 1px;
  border-radius: 0.375rem;
  padding: 0.5rem 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.form-input:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(3px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-color: rgb(59 130 246 / 0.5);
  border-color: rgb(59 130 246);
}

.form-input::placeholder {
  color: #9ca3af;
  opacity: 1;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.25rem;
}

.form-error {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: #dc2626;
}

/* TailwindCSS Table Styles */
.table-auto {
  table-layout: auto;
}

.table-fixed {
  table-layout: fixed;
}

.border-collapse {
  border-collapse: collapse;
}

.border-separate {
  border-collapse: separate;
}

/* TailwindCSS Animation Styles */
.animate-spin {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .5;
  }
}

.animate-bounce {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(-25%);
    animation-timing-function: cubic-bezier(0.8,0,1,1);
  }
  50% {
    transform: none;
    animation-timing-function: cubic-bezier(0,0,0.2,1);
  }
}

/* TailwindCSS Transform Styles */
.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.rotate-180 {
  --tw-rotate: 180deg;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.scale-110 {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

/* TailwindCSS Transition Styles */
.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-75 {
  transition-duration: 75ms;
}

.duration-100 {
  transition-duration: 100ms;
}

.duration-150 {
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.duration-500 {
  transition-duration: 500ms;
}

.duration-700 {
  transition-duration: 700ms;
}

.duration-1000 {
  transition-duration: 1000ms;
}

.ease-linear {
  transition-timing-function: linear;
}

.ease-in {
  transition-timing-function: cubic-bezier(0.4, 0, 1, 1);
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* TailwindCSS Focus Styles */
.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-offset-2:focus {
  --tw-ring-offset-width: 2px;
}

.focus\:ring-primary:focus {
  --tw-ring-color: rgb(31 60 124 / 0.5);
}

.focus\:ring-blue-500:focus {
  --tw-ring-color: rgb(59 130 246 / 0.5);
}

.focus\:ring-gray-500:focus {
  --tw-ring-color: rgb(107 114 128 / 0.5);
}

.focus-visible\:ring-2:focus-visible {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus-visible\:ring-offset-2:focus-visible {
  --tw-ring-offset-width: 2px;
}

.focus-visible\:ring-primary:focus-visible {
  --tw-ring-color: rgb(31 60 124 / 0.5);
}

.focus-visible\:ring-blue-500:focus-visible {
  --tw-ring-color: rgb(59 130 246 / 0.5);
}

/* TailwindCSS Hover Styles */
.hover\:bg-gray-50:hover {
  background-color: #f9fafb;
}

.hover\:bg-gray-100:hover {
  background-color: #f3f4f6;
}

.hover\:bg-gray-200:hover {
  background-color: #e5e7eb;
}

.hover\:bg-primary-dark:hover {
  background-color: rgb(23, 48, 97);
}

.hover\:text-gray-900:hover {
  color: #111827;
}

.hover\:text-white:hover {
  color: #fff;
}

.hover\:text-gray-200:hover {
  color: #e5e7eb;
}

.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-xl:hover {
  --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

/* TailwindCSS Disabled Styles */
.disabled\:opacity-50:disabled {
  opacity: 0.5;
}

.disabled\:pointer-events-none:disabled {
  pointer-events: none;
}

.disabled\:cursor-default:disabled {
  cursor: default;
}

/* TailwindCSS Active Styles */
.active\:bg-gray-100:active {
  background-color: #f3f4f6;
}

.active\:scale-95:active {
  --tw-scale-x: 0.95;
  --tw-scale-y: 0.95;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

/* TailwindCSS Group Styles */
.group:hover .group-hover\:opacity-100 {
  opacity: 1;
}

.group:hover .group-hover\:opacity-0 {
  opacity: 0;
}

.group:hover .group-hover\:scale-105 {
  --tw-scale-x: 1.05;
  --tw-scale-y: 1.05;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

/* Layout Standards */
/* Page Layout Standards */
.page-layout {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-header {
  padding: 1.5rem 0 1rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  margin-bottom: 1.5rem;
  position: relative;
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #e5e7eb 20%, #e5e7eb 80%, transparent 100%);
}

.page-header h5 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.page-header p {
  font-size: 1rem;
  color: #6b7280;
  margin: 0.5rem 0 0 0;
  font-weight: 400;
  line-height: 1.4;
}

.page-content {
  flex: 1;
  padding: 0 0 2rem 0;
}

.page-footer {
  margin-top: auto;
  padding: 2rem 0;
  border-top: 1px solid #e5e7eb;
  background-color: #f9fafb;
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Section Standards */
.section-standard {
  margin-bottom: 2rem;
}

.section-standard:last-child {
  margin-bottom: 0;
}

.section-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.75rem;
}

/* Card Standards */
.card-standard {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.card-standard:last-child {
  margin-bottom: 0;
}

.card-header {
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.card-body {
  padding: 0;
}

.card-footer {
  padding-top: 1rem;
  margin-top: 1rem;
  border-top: 1px solid #e5e7eb;
}

/* Form Standards */
.form-section {
  margin-bottom: 2rem;
}

.form-section:last-child {
  margin-bottom: 0;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group:last-child {
  margin-bottom: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .form-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .form-row {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Button Standards */
.button-group {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  justify-content: flex-start;
}

.button-group.button-group-right {
  justify-content: flex-end;
}

.button-group.button-group-center {
  justify-content: center;
}

.button-group.button-group-space-between {
  justify-content: space-between;
}

@media (max-width: 640px) {
  .button-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .button-group .btn-primary,
  .button-group .btn-secondary,
  .button-group .btn-danger {
    width: 100%;
  }
}

/* Table Standards */
.table-section {
  margin-bottom: 2rem;
}

.table-container-standard {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.table-header {
  padding: 1rem 1.5rem;
  background-color: #f9fafb;
  border-bottom: 1px solid #e5e7eb;
}

.table-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin: 0;
}

.table-content {
  overflow-x: auto;
}

/* Loading/Error States */
.state-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 1rem;
  text-align: center;
}

.state-container.loading {
  color: #6b7280;
}

.state-container.error {
  color: #dc2626;
}

.state-container.empty {
  color: #6b7280;
}

.state-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}

.state-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.state-message {
  font-size: 1rem;
  margin-bottom: 1.5rem;
}

/* Responsive Standards */
@media (max-width: 640px) {
  .page-header {
    padding: 1.25rem 0 0.75rem 0;
    margin-bottom: 1.25rem;
  }
  
  .page-header h5 {
    font-size: 1.125rem;
    letter-spacing: -0.02em;
  }
  
  .page-header p {
    font-size: 0.875rem;
    margin: 0.375rem 0 0 0;
  }
  
  .page-content {
    padding: 0 0 1.25rem 0;
  }
  
  .card {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .card-standard {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  
  .section {
    margin-top: 1.25rem;
    margin-bottom: 1.25rem;
  }
  
  .section-standard {
    margin-bottom: 1.25rem;
  }
  
  .grid-summary {
    margin-bottom: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .page-header {
    padding: 2rem 0 1.5rem 0;
    margin-bottom: 2rem;
  }
  
  .page-header h5 {
    font-size: 1.375rem;
    letter-spacing: -0.025em;
  }
  
  .page-header p {
    font-size: 1.125rem;
    margin: 0.625rem 0 0 0;
  }
  
  .page-content {
    padding: 0 0 2rem 0;
  }
  
  .card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .card-standard {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .section {
    margin-top: 2rem;
    margin-bottom: 2rem;
  }
  
  .section-standard {
    margin-bottom: 2rem;
  }
  
  .grid-summary {
    margin-bottom: 2rem;
  }
}

/* TailwindCSS Print Styles */
@media print {
  .print\:hidden {
    display: none;
  }
  
  .print\:block {
    display: block;
  }
  
  .print\:text-black {
    color: #000;
  }
  
  .print\:bg-white {
    background-color: #fff;
  }
}

/* TailwindCSS Responsive Breakpoints */
@media (min-width: 640px) {
  .sm\:block { display: block; }
  .sm\:hidden { display: none; }
  .sm\:flex { display: flex; }
  .sm\:grid { display: grid; }
  .sm\:inline-flex { display: inline-flex; }
  .sm\:items-center { align-items: center; }
  .sm\:justify-between { justify-content: space-between; }
  .sm\:space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
  .sm\:space-y-0 > :not([hidden]) ~ :not([hidden]) { margin-top: 0px; }
  .sm\:mt-0 { margin-top: 0px; }
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .sm\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .sm\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .sm\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .sm\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .sm\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .sm\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .sm\:font-medium { font-weight: 500; }
  .sm\:font-semibold { font-weight: 600; }
  .sm\:font-bold { font-weight: 700; }
  .sm\:rounded-md { border-radius: 0.375rem; }
  .sm\:rounded-lg { border-radius: 0.5rem; }
  .sm\:rounded-xl { border-radius: 0.75rem; }
  .sm\:shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
  .sm\:shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
  .sm\:shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
  .sm\:bg-white { background-color: #fff; }
  .sm\:bg-gray-50 { background-color: #f9fafb; }
  .sm\:bg-gray-100 { background-color: #f3f4f6; }
  .sm\:text-gray-900 { color: #111827; }
  .sm\:text-gray-700 { color: #374151; }
  .sm\:text-gray-600 { color: #4b5563; }
  .sm\:text-gray-500 { color: #6b7280; }
  .sm\:text-gray-400 { color: #9ca3af; }
  .sm\:text-white { color: #fff; }
  .sm\:border-gray-200 { border-color: #e5e7eb; }
  .sm\:border-gray-300 { border-color: #d1d5db; }
  .sm\:ring-gray-500 { --tw-ring-color: #6b7280; }
  .sm\:ring-offset-2 { --tw-ring-offset-width: 2px; }
  .sm\:focus\:ring-2:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); }
  .sm\:focus\:ring-gray-500:focus { --tw-ring-color: rgb(107 114 128 / 0.5); }
  .sm\:hover\:bg-gray-50:hover { background-color: #f9fafb; }
  .sm\:hover\:bg-gray-100:hover { background-color: #f3f4f6; }
  .sm\:hover\:text-gray-900:hover { color: #111827; }
  .sm\:hover\:text-white:hover { color: #fff; }
  .sm\:hover\:shadow-lg:hover { --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); }
  .sm\:disabled\:opacity-50:disabled { opacity: 0.5; }
  .sm\:disabled\:pointer-events-none:disabled { pointer-events: none; }
  .sm\:disabled\:cursor-default:disabled { cursor: default; }
  .sm\:transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
  .sm\:transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
  .sm\:duration-200 { transition-duration: 200ms; }
  .sm\:ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
}

@media (min-width: 768px) {
  .md\:block { display: block; }
  .md\:hidden { display: none; }
  .md\:flex { display: flex; }
  .md\:grid { display: grid; }
  .md\:inline-flex { display: inline-flex; }
  .md\:items-center { align-items: center; }
  .md\:justify-between { justify-content: space-between; }
  .md\:space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
  .md\:space-y-0 > :not([hidden]) ~ :not([hidden]) { margin-top: 0px; }
  .md\:mt-0 { margin-top: 0px; }
  .md\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .md\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .md\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .md\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .md\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .md\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .md\:font-medium { font-weight: 500; }
  .md\:font-semibold { font-weight: 600; }
  .md\:font-bold { font-weight: 700; }
  .md\:rounded-md { border-radius: 0.375rem; }
  .md\:rounded-lg { border-radius: 0.5rem; }
  .md\:rounded-xl { border-radius: 0.75rem; }
  .md\:shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
  .md\:shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
  .md\:shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
  .md\:bg-white { background-color: #fff; }
  .md\:bg-gray-50 { background-color: #f9fafb; }
  .md\:bg-gray-100 { background-color: #f3f4f6; }
  .md\:text-gray-900 { color: #111827; }
  .md\:text-gray-700 { color: #374151; }
  .md\:text-gray-600 { color: #4b5563; }
  .md\:text-gray-500 { color: #6b7280; }
  .md\:text-gray-400 { color: #9ca3af; }
  .md\:text-white { color: #fff; }
  .md\:border-gray-200 { border-color: #e5e7eb; }
  .md\:border-gray-300 { border-color: #d1d5db; }
  .md\:ring-gray-500 { --tw-ring-color: #6b7280; }
  .md\:ring-offset-2 { --tw-ring-offset-width: 2px; }
  .md\:focus\:ring-2:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); }
  .md\:focus\:ring-gray-500:focus { --tw-ring-color: rgb(107 114 128 / 0.5); }
  .md\:hover\:bg-gray-50:hover { background-color: #f9fafb; }
  .md\:hover\:bg-gray-100:hover { background-color: #f3f4f6; }
  .md\:hover\:text-gray-900:hover { color: #111827; }
  .md\:hover\:text-white:hover { color: #fff; }
  .md\:hover\:shadow-lg:hover { --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); }
  .md\:disabled\:opacity-50:disabled { opacity: 0.5; }
  .md\:disabled\:pointer-events-none:disabled { pointer-events: none; }
  .md\:disabled\:cursor-default:disabled { cursor: default; }
  .md\:transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
  .md\:transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
  .md\:duration-200 { transition-duration: 200ms; }
  .md\:ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
}

@media (min-width: 1024px) {
  .lg\:block { display: block; }
  .lg\:hidden { display: none; }
  .lg\:flex { display: flex; }
  .lg\:grid { display: grid; }
  .lg\:inline-flex { display: inline-flex; }
  .lg\:items-center { align-items: center; }
  .lg\:justify-between { justify-content: space-between; }
  .lg\:space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
  .lg\:space-y-0 > :not([hidden]) ~ :not([hidden]) { margin-top: 0px; }
  .lg\:mt-0 { margin-top: 0px; }
  .lg\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .lg\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .lg\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .lg\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .lg\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .lg\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .lg\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .lg\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .lg\:font-medium { font-weight: 500; }
  .lg\:font-semibold { font-weight: 600; }
  .lg\:font-bold { font-weight: 700; }
  .lg\:rounded-md { border-radius: 0.375rem; }
  .lg\:rounded-lg { border-radius: 0.5rem; }
  .lg\:rounded-xl { border-radius: 0.75rem; }
  .lg\:shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
  .lg\:shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
  .lg\:shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
  .lg\:bg-white { background-color: #fff; }
  .lg\:bg-gray-50 { background-color: #f9fafb; }
  .lg\:bg-gray-100 { background-color: #f3f4f6; }
  .lg\:text-gray-900 { color: #111827; }
  .lg\:text-gray-700 { color: #374151; }
  .lg\:text-gray-600 { color: #4b5563; }
  .lg\:text-gray-500 { color: #6b7280; }
  .lg\:text-gray-400 { color: #9ca3af; }
  .lg\:text-white { color: #fff; }
  .lg\:border-gray-200 { border-color: #e5e7eb; }
  .lg\:border-gray-300 { border-color: #d1d5db; }
  .lg\:ring-gray-500 { --tw-ring-color: #6b7280; }
  .lg\:ring-offset-2 { --tw-ring-offset-width: 2px; }
  .lg\:focus\:ring-2:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); }
  .lg\:focus\:ring-gray-500:focus { --tw-ring-color: rgb(107 114 128 / 0.5); }
  .lg\:hover\:bg-gray-50:hover { background-color: #f9fafb; }
  .lg\:hover\:bg-gray-100:hover { background-color: #f3f4f6; }
  .lg\:hover\:text-gray-900:hover { color: #111827; }
  .lg\:hover\:text-white:hover { color: #fff; }
  .lg\:hover\:shadow-lg:hover { --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); }
  .lg\:disabled\:opacity-50:disabled { opacity: 0.5; }
  .lg\:disabled\:pointer-events-none:disabled { pointer-events: none; }
  .lg\:disabled\:cursor-default:disabled { cursor: default; }
  .lg\:transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
  .lg\:transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
  .lg\:duration-200 { transition-duration: 200ms; }
  .lg\:ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
}

@media (min-width: 1280px) {
  .xl\:block { display: block; }
  .xl\:hidden { display: none; }
  .xl\:flex { display: flex; }
  .xl\:grid { display: grid; }
  .xl\:inline-flex { display: inline-flex; }
  .xl\:items-center { align-items: center; }
  .xl\:justify-between { justify-content: space-between; }
  .xl\:space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
  .xl\:space-y-0 > :not([hidden]) ~ :not([hidden]) { margin-top: 0px; }
  .xl\:mt-0 { margin-top: 0px; }
  .xl\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .xl\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .xl\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .xl\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .xl\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .xl\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .xl\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .xl\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .xl\:font-medium { font-weight: 500; }
  .xl\:font-semibold { font-weight: 600; }
  .xl\:font-bold { font-weight: 700; }
  .xl\:rounded-md { border-radius: 0.375rem; }
  .xl\:rounded-lg { border-radius: 0.5rem; }
  .xl\:rounded-xl { border-radius: 0.75rem; }
  .xl\:shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
  .xl\:shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
  .xl\:shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
  .xl\:bg-white { background-color: #fff; }
  .xl\:bg-gray-50 { background-color: #f9fafb; }
  .xl\:bg-gray-100 { background-color: #f3f4f6; }
  .xl\:text-gray-900 { color: #111827; }
  .xl\:text-gray-700 { color: #374151; }
  .xl\:text-gray-600 { color: #4b5563; }
  .xl\:text-gray-500 { color: #6b7280; }
  .xl\:text-gray-400 { color: #9ca3af; }
  .xl\:text-white { color: #fff; }
  .xl\:border-gray-200 { border-color: #e5e7eb; }
  .xl\:border-gray-300 { border-color: #d1d5db; }
  .xl\:ring-gray-500 { --tw-ring-color: #6b7280; }
  .xl\:ring-offset-2 { --tw-ring-offset-width: 2px; }
  .xl\:focus\:ring-2:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); }
  .xl\:focus\:ring-gray-500:focus { --tw-ring-color: rgb(107 114 128 / 0.5); }
  .xl\:hover\:bg-gray-50:hover { background-color: #f9fafb; }
  .xl\:hover\:bg-gray-100:hover { background-color: #f3f4f6; }
  .xl\:hover\:text-gray-900:hover { color: #111827; }
  .xl\:hover\:text-white:hover { color: #fff; }
  .xl\:hover\:shadow-lg:hover { --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); }
  .xl\:disabled\:opacity-50:disabled { opacity: 0.5; }
  .xl\:disabled\:pointer-events-none:disabled { pointer-events: none; }
  .xl\:disabled\:cursor-default:disabled { cursor: default; }
  .xl\:transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
  .xl\:transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
  .xl\:duration-200 { transition-duration: 200ms; }
  .xl\:ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
}

@media (min-width: 1536px) {
  .xl2\:block { display: block; }
  .xl2\:hidden { display: none; }
  .xl2\:flex { display: flex; }
  .xl2\:grid { display: grid; }
  .xl2\:inline-flex { display: inline-flex; }
  .xl2\:items-center { align-items: center; }
  .xl2\:justify-between { justify-content: space-between; }
  .xl2\:space-x-6 > :not([hidden]) ~ :not([hidden]) { margin-left: 1.5rem; }
  .xl2\:space-y-0 > :not([hidden]) ~ :not([hidden]) { margin-top: 0px; }
  .xl2\:mt-0 { margin-top: 0px; }
  .xl2\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .xl2\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
  .xl2\:text-sm { font-size: 0.875rem; line-height: 1.25rem; }
  .xl2\:text-base { font-size: 1rem; line-height: 1.5rem; }
  .xl2\:text-lg { font-size: 1.125rem; line-height: 1.75rem; }
  .xl2\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
  .xl2\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
  .xl2\:text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
  .xl2\:font-medium { font-weight: 500; }
  .xl2\:font-semibold { font-weight: 600; }
  .xl2\:font-bold { font-weight: 700; }
  .xl2\:rounded-md { border-radius: 0.375rem; }
  .xl2\:rounded-lg { border-radius: 0.5rem; }
  .xl2\:rounded-xl { border-radius: 0.75rem; }
  .xl2\:shadow-sm { box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05); }
  .xl2\:shadow-md { box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1); }
  .xl2\:shadow-lg { box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); }
  .xl2\:bg-white { background-color: #fff; }
  .xl2\:bg-gray-50 { background-color: #f9fafb; }
  .xl2\:bg-gray-100 { background-color: #f3f4f6; }
  .xl2\:text-gray-900 { color: #111827; }
  .xl2\:text-gray-700 { color: #374151; }
  .xl2\:text-gray-600 { color: #4b5563; }
  .xl2\:text-gray-500 { color: #6b7280; }
  .xl2\:text-gray-400 { color: #9ca3af; }
  .xl2\:text-white { color: #fff; }
  .xl2\:border-gray-200 { border-color: #e5e7eb; }
  .xl2\:border-gray-300 { border-color: #d1d5db; }
  .xl2\:ring-gray-500 { --tw-ring-color: #6b7280; }
  .xl2\:ring-offset-2 { --tw-ring-offset-width: 2px; }
  .xl2\:focus\:ring-2:focus { --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color); --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color); box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000); }
  .xl2\:focus\:ring-gray-500:focus { --tw-ring-color: rgb(107 114 128 / 0.5); }
  .xl2\:hover\:bg-gray-50:hover { background-color: #f9fafb; }
  .xl2\:hover\:bg-gray-100:hover { background-color: #f3f4f6; }
  .xl2\:hover\:text-gray-900:hover { color: #111827; }
  .xl2\:hover\:text-white:hover { color: #fff; }
  .xl2\:hover\:shadow-lg:hover { --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1); --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); }
  .xl2\:disabled\:opacity-50:disabled { opacity: 0.5; }
  .xl2\:disabled\:pointer-events-none:disabled { pointer-events: none; }
  .xl2\:disabled\:cursor-default:disabled { cursor: default; }
  .xl2\:transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
  .xl2\:transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
  .xl2\:duration-200 { transition-duration: 200ms; }
  .xl2\:ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }
}

/* Fix for icons that appear above labels - more specific targeting */
.form-label + .relative .fas.fa-search {
  display: block !important;
}

/* Hide only icons that are siblings of form labels (not inside inputs) */
.form-label ~ .fas:not(.relative .fas),
.form-label ~ .fa:not(.relative .fa),
.form-label ~ i:not(.relative i) {
  display: none !important;
}

/* Ensure input field icons are visible and properly positioned */
.relative .absolute .fas.fa-search {
  display: block !important;
  position: absolute !important;
  right: 0.75rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  pointer-events: none !important;
}

/* Card title icons should be visible */
.card-title .fas,
.card-title .fa,
.card-title i {
  display: inline-block !important;
}

/* Section header icons should be visible */
.flex.items-center .fas,
.flex.items-center .fa,
.flex.items-center i {
  display: inline-block !important;
}

/* Remove any pseudo-element icons that might be causing misalignment */
.form-label::before,
.form-label::after,
.form-input::before,
.form-input::after {
  display: none !important;
}

/* Ensure form labels don't have any background icons */
.form-label {
  background-image: none !important;
  background-position: initial !important;
  background-repeat: no-repeat !important;
}

/* Input Icon Positioning Fix */
.relative .absolute.right-3 {
  position: absolute !important;
  right: 0.75rem !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  pointer-events: none !important;
}

/* Form Input Container Fix */
.relative {
  position: relative !important;
}

/* Ensure input icons are properly positioned */
.form-input + .absolute {
  position: absolute !important;
  top: 50% !important;
  right: 0.75rem !important;
  transform: translateY(-50%) !important;
  pointer-events: none !important;
}

/* Card Title Icon Alignment Fix */
.card-title {
  display: flex !important;
  align-items: center !important;
}

.card-title i {
  flex-shrink: 0;
  margin-right: 0.5rem;
}

/* H5 Icon Alignment Fix */
h5.flex.items-center {
  display: flex !important;
  align-items: center !important;
}

h5.flex.items-center i {
  flex-shrink: 0;
  margin-right: 0.5rem;
}

/* Section Header Icon Alignment Fix */
.flex.items-center.mb-4 {
  display: flex !important;
  align-items: center !important;
}

.flex.items-center.mb-4 i {
  flex-shrink: 0;
  margin-right: 0.75rem;
}

.flex.items-center.mb-4 h3 {
  margin: 0;
  line-height: 1.2;
}

/* Primary dark variant */
.bg-primary-dark { background-color: #2563eb; }
.hover\:bg-primary-dark:hover { background-color: #2563eb; }
.text-primary-dark { color: #2563eb; }
.hover\:text-primary-dark:hover { color: #2563eb; }