/* facilitiesregi.css */

/* Base Styles */
body {
  font-family: 'Noto Sans Sinhala', sans-serif;
  touch-action: pan-y;
}

/* Form Steps */
.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { 
    opacity: 0; 
    transform: translateY(10px); 
  }
  to { 
    opacity: 1; 
    transform: translateY(0); 
  }
}

/* Navigation Styles */
.nav-link {
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}

.nav-link:hover {
  background-color: rgba(243, 244, 246, 0.5);
  color: #FF3600;
}

.dark .nav-link {
  color: #d1d5db;
}

.dark .nav-link:hover {
  background-color: rgba(55, 65, 81, 0.5);
  color: #FF3600;
}

.dropdown-toggle {
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #1f2937;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}

.dropdown-toggle:hover {
  background-color: rgba(243, 244, 246, 0.5);
  color: #FF3600;
}

.dark .dropdown-toggle {
  color: #d1d5db;
}

.dark .dropdown-toggle:hover {
  background-color: rgba(55, 65, 81, 0.5);
  color: #FF3600;
}

.dropdown-menu {
  position: absolute;
  left: 0;
  margin-top: 0.5rem;
  width: 14rem;
  transform-origin: top left;
  border-radius: 0.375rem;
  background-color: white;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  opacity: 0;
  scale: 0.95;
  transform: opacity 0.2s, scale 0.2s;
  z-index: 50;
}

.group:hover .dropdown-menu {
  opacity: 1;
  scale: 1;
}

.dark .dropdown-menu {
  background-color: #1f2937;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #374151;
  transition: all 0.2s;
}

.dropdown-item:hover {
  background-color: #f3f4f6;
  color: #FF3600;
}

.dark .dropdown-item {
  color: #d1d5db;
}

.dark .dropdown-item:hover {
  background-color: #374151;
  color: #FF3600;
}

.btn-primary {
  margin-left: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: white;
  background: linear-gradient(to right, #FF3600, #FF6B00);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: linear-gradient(to right, #e63100, #e65f00);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Mobile Navigation */
.mobile-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 0.375rem;
  color: #FF3600;
  transition: all 0.15s ease-in-out;
}

.mobile-menu-toggle:hover {
  color: #e63100;
  background-color: rgba(243, 244, 246, 0.5);
}

.dark .mobile-menu-toggle:hover {
  background-color: rgba(55, 65, 81, 0.5);
}

.mobile-menu {
  display: none;
  transform-origin: top;
  transition: all 0.3s ease-out;
}

@media (min-width: 768px) {
  .mobile-menu {
    display: none !important;
  }
}

.mobile-menu-content {
  padding: 0.5rem 0.5rem 0.75rem;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.dark .mobile-menu-content {
  background-color: rgba(31, 41, 55, 0.95);
}

.mobile-nav-link {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  color: #1f2937;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}

.mobile-nav-link:hover {
  background-color: rgba(243, 244, 246, 0.5);
  color: #FF3600;
}

.dark .mobile-nav-link {
  color: #d1d5db;
}

.dark .mobile-nav-link:hover {
  background-color: rgba(55, 65, 81, 0.5);
  color: #FF3600;
}

.mobile-dropdown-menu {
  display: none;
  padding-left: 1rem;
  margin-top: 0.25rem;
  gap: 0.25rem;
}

.mobile-dropdown-item {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  color: #374151;
  display: flex;
  align-items: center;
  transition: all 0.2s;
}

.mobile-dropdown-item:hover {
  background-color: rgba(243, 244, 246, 0.5);
  color: #FF3600;
}

.dark .mobile-dropdown-item {
  color: #9ca3af;
}

.dark .mobile-dropdown-item:hover {
  background-color: rgba(55, 65, 81, 0.5);
  color: #FF3600;
}

.mobile-btn-primary {
  display: block;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  font-size: 1rem;
  font-weight: 500;
  color: white;
  background: linear-gradient(to right, #FF3600, #FF6B00);
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.5rem;
  transition: all 0.3s;
}

.mobile-btn-primary:hover {
  background: linear-gradient(to right, #e63100, #e65f00);
}

/* Progress Steps */
.step-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 9999px;
  border-width: 2px;
  border-color: #d1d5db;
  color: #9ca3af;
  font-weight: 600;
}

.step-circle.active {
  background-color: #FF3600;
  color: white;
  border-color: #FF3600;
}

.step-text {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
}

.step-text.active {
  color: #374151;
}

.dark .step-text {
  color: #9ca3af;
}

.dark .step-text.active {
  color: #d1d5db;
}

.step-divider {
  flex: 1 1 0%;
  border-top-width: 2px;
  border-color: #e5e7eb;
  margin-left: 1rem;
  margin-right: 1rem;
}

.dark .step-divider {
  border-color: #4b5563;
}

/* Form Styles */
.step-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 1rem;
}

.dark .step-title {
  color: #e5e7eb;
}

.facility-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 640px) {
  .facility-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.facility-option {
  width: 100%;
}

.facility-type-btn {
  display: block;
  padding: 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
}

.facility-type-btn:hover {
  border-color: #FF3600;
}

.dark .facility-type-btn {
  border-color: #374151;
  background-color: #374151;
}

.facility-type-btn.active {
  border-color: #FF3600;
  background-color: #fff7f5;
  box-shadow: 0 0 0 2px rgba(255, 54, 0, 0.2);
}

.dark .facility-type-btn.active {
  background-color: #2c1a0f;
}

.facility-icon {
  font-size: 1.875rem;
  margin-bottom: 0.5rem;
}

.facility-name {
  font-weight: 500;
}

.dark .facility-name {
  color: #e5e7eb;
}

.facility-desc {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.25rem;
}

.dark .facility-desc {
  color: #9ca3af;
}

/* Form Navigation */
.form-navigation {
  margin-top: 1.5rem;
  display: flex;
  justify-content: flex-end;
}

.form-navigation-between {
  margin-top: 1.5rem;
  display: flex;
  justify-content: space-between;
}

.btn-next, .btn-submit, .btn-done {
  padding: 0.5rem 1.5rem;
  background-color: #FF3600;
  color: white;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn-next:hover, .btn-submit:hover, .btn-done:hover {
  background-color: #e63100;
}

.btn-back {
  padding: 0.5rem 1.5rem;
  background-color: #e5e7eb;
  color: #374151;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background-color 0.3s;
}

.btn-back:hover {
  background-color: #d1d5db;
}

.dark .btn-back {
  background-color: #374151;
  color: #e5e7eb;
}

.dark .btn-back:hover {
  background-color: #4b5563;
}

/* Location Form */
.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .location-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 0.25rem;
}

.dark .form-label {
  color: #d1d5db;
}

.form-input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  transition: all 0.2s;
}

.form-input:focus {
  ring: 2px;
  ring-color: #FF3600;
  border-color: #FF3600;
  outline: none;
}

.dark .form-input {
  background-color: #374151;
  border-color: #4b5563;
  color: #e5e7eb;
}

.dark .form-input::placeholder {
  color: #9ca3af;
}

.location-btn {
  width: 100%;
  padding: 0.5rem 1rem;
  background-color: #f3f4f6;
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  transition: background-color 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-btn:hover {
  background-color: #e5e7eb;
}

.dark .location-btn {
  background-color: #374151;
  border-color: #4b5563;
  color: #e5e7eb;
}

.dark .location-btn:hover {
  background-color: #4b5563;
}

.location-hint, .map-hint {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #6b7280;
}

.dark .location-hint, .dark .map-hint {
  color: #9ca3af;
}

/* Map */
.map-container {
  height: 300px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.dark .map-container {
  border-color: #374151;
}

/* Details Form */
.details-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .details-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.checkbox-item {
  display: flex;
  align-items: center;
}

.checkbox-input {
  height: 1rem;
  width: 1rem;
  color: #FF3600;
  border: 1px solid #d1d5db;
  border-radius: 0.25rem;
  transition: all 0.2s;
}

.checkbox-input:focus {
  ring: 2px;
  ring-color: #FF3600;
  outline: none;
}

.dark .checkbox-input {
  background-color: #374151;
  border-color: #4b5563;
}

.checkbox-text {
  margin-left: 0.5rem;
  font-size: 0.875rem;
  color: #374151;
}

.dark .checkbox-text {
  color: #d1d5db;
}

/* Loading Spinner */
.loading-spinner {
  border: 4px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  border-top: 4px solid #FF3600;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
  margin: 20px auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* Error States */
.error-border {
  border-color: #ef4444 !important;
}

.code-display {
  font-family: monospace;
  letter-spacing: 2px;
  font-size: 1.5rem;
}

/* Success Modal */
.success-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 50;
}

.success-modal.hidden {
  display: none;
}

.success-modal-content {
  background-color: white;
  border-radius: 0.75rem;
  padding: 2rem;
  max-width: 28rem;
  width: 100%;
  margin-left: 1rem;
  margin-right: 1rem;
  text-align: center;
}

.dark .success-modal-content {
  background-color: #1f2937;
  color: #f3f4f6;
}

.success-icon {
  width: 4rem;
  height: 4rem;
  background-color: #dcfce7;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 1rem;
}

.dark .success-icon {
  background-color: #064e3b;
}

.success-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.dark .success-title {
  color: white;
}

.success-message {
  color: #6b7280;
  margin-bottom: 1rem;
}

.dark .success-message {
  color: #d1d5db;
}

.reference-code {
  background-color: #f3f4f6;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}

.dark .reference-code {
  background-color: #111827;
}

.reference-label {
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 0.5rem;
}

.dark .reference-label {
  color: #d1d5db;
}

.success-actions {
  display: flex;
  justify-content: center;
}

/* Dark Mode Toggle Switch */
.dark-mode-switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 24px;
}

.dark-mode-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.dark-mode-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 24px;
}

.dark-mode-slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .dark-mode-slider {
  background-color: #FF3600;
}

input:checked + .dark-mode-slider:before {
  transform: translateX(26px);
}

.dark-mode-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: white;
}

.sun-icon {
  left: 6px;
}

.moon-icon {
  right: 6px;
}

/* Google Maps Styles */
.gm-style .gm-style-iw-c {
  padding: 12px !important;
  border-radius: 12px !important;
}

.gm-style .gm-style-iw-d {
  overflow: auto !important;
}

/* Dark Mode Styles */
.dark {
  background-color: #1a1a1a;
  color: #e5e7eb;
}

.dark .bg-white {
  background-color: #1f2937 !important;
}

.dark .text-gray-900 {
  color: #f3f4f6 !important;
}

.dark .text-gray-600 {
  color: #d1d5db !important;
}

.dark .bg-gray-50 {
  background-color: #111827 !important;
}

.dark .bg-gradient-to-br.from-white.via-orange-50.to-white {
  background: linear-gradient(to bottom right, #1f2937, #1a1a1a, #1f2937) !important;
}

.dark .border-gray-300 {
  border-color: #374151 !important;
}

.dark .bg-white\/80 {
  background-color: rgba(31, 41, 55, 0.8) !important;
}

.dark .bg-gray-100\/50 {
  background-color: rgba(17, 24, 39, 0.5) !important;
}

.dark .hover\:bg-gray-100\/50:hover {
  background-color: rgba(17, 24, 39, 0.5) !important;
}

.dark .hover\:text-gray-900:hover {
  color: #f3f4f6 !important;
}

.dark .bg-blue-50 {
  background-color: #1e3a8a !important;
}

.dark .bg-gray-200 {
  background-color: #374151 !important;
  color: #f3f4f6 !important;
}

.dark .bg-gray-100 {
  background-color: #1f2937 !important;
}

.dark .text-gray-700 {
  color: #d1d5db !important;
}

.dark .border-gray-200 {
  border-color: #374151 !important;
}

.dark .divide-gray-200 {
  border-color: #374151 !important;
}

.dark .bg-green-100 {
  background-color: #064e3b !important;
}

.dark .text-green-500 {
  color: #34d399 !important;
}

/* Form elements in dark mode */
.dark input,
.dark textarea,
.dark select {
  background-color: #1f2937 !important;
  border-color: #374151 !important;
  color: #f3f4f6 !important;
}

.dark input::placeholder,
.dark textarea::placeholder {
  color: #9ca3af !important;
}

/* Success modal in dark mode */
.dark #successModal {
  color: #f3f4f6 !important;
}

.dark #successModal .bg-white {
  background-color: #1f2937 !important;
}

.dark #successModal .bg-gray-100 {
  background-color: #111827 !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .facility-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .location-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .details-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .map-container {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .facility-grid {
    grid-template-columns: 1fr;
  }
  
  .step-divider {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
  }
  
  .step-text {
    font-size: 0.75rem;
  }
}

/* Print Styles */
@media print {
  .nav, .success-modal, .btn-back, .btn-next {
    display: none !important;
  }
  
  .form-step.active {
    display: block !important;
  }
}

/* Utility classes for Tailwind compatibility */
.hidden {
  display: none;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.items-center {
  align-items: center;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.w-full {
  width: 100%;
}

.h-full {
  height: 100%;
}

.text-center {
  text-align: center;
}

.text-white {
  color: white;
}

.bg-white {
  background-color: white;
}

.bg-gray-50 {
  background-color: #f9fafb;
}

.bg-gray-100 {
  background-color: #f3f4f6;
}

.bg-gray-200 {
  background-color: #e5e7eb;
}

.border {
  border-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-gray-200 {
  border-color: #e5e7eb;
}

.border-gray-300 {
  border-color: #d1d5db;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-xl {
  border-radius: 0.75rem;
}

.rounded-2xl {
  border-radius: 1rem;
}

.rounded-full {
  border-radius: 9999px;
}

.shadow-sm {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.shadow-xl {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.z-50 {
  z-index: 50;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.ml-1 {
  margin-left: 0.25rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-4 {
  margin-left: 1rem;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mr-4 {
  margin-right: 1rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.text-xs {
  font-size: 0.75rem;
}

.text-sm {
  font-size: 0.875rem;
}

.text-base {
  font-size: 1rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-3xl {
  font-size: 1.875rem;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.grid {
  display: grid;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.space-y-1 > * + * {
  margin-top: 0.25rem;
}

.space-y-2 > * + * {
  margin-top: 0.5rem;
}

.divide-y > * + * {
  border-top-width: 1px;
}

.divide-gray-200 > * + * {
  border-color: #e5e7eb;
}

.overflow-hidden {
  overflow: hidden;
}

.backdrop-blur-md {
  backdrop-filter: blur(12px);
}

.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;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.ease-in-out {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.ease-out {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

.max-w-4xl {
  max-width: 56rem;
}

.max-w-7xl {
  max-width: 80rem;
}

.max-w-md {
  max-width: 28rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-8 {
  height: 2rem;
}

.h-16 {
  height: 4rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-8 {
  width: 2rem;
}

.w-16 {
  width: 4rem;
}

.w-56 {
  width: 14rem;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.cursor-pointer {
  cursor: pointer;
}

/* Color utilities */
.text-blue-500 {
  color: #3b82f6;
}

.text-green-500 {
  color: #10b981;
}

.text-indigo-500 {
  color: #6366f1;
}

.text-purple-500 {
  color: #8b5cf6;
}

.text-cyan-500 {
  color: #06b6d4;
}

.text-yellow-500 {
  color: #eab308;
}

.text-pink-500 {
  color: #ec4899;
}

.text-gray-500 {
  color: #6b7280;
}

.text-red-500 {
  color: #ef4444;
}

.bg-green-100 {
  background-color: #dcfce7;
}

.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.from-\[\#FF3600\] {
  --tw-gradient-from: #FF3600;
  --tw-gradient-to: rgba(255, 54, 0, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}

.to-\[\#FF6B00\] {
  --tw-gradient-to: #FF6B00;
}

/* Focus states */
.focus\:ring-\[\#FF3600\]:focus {
  --tw-ring-color: #FF3600;
}

.focus\:border-\[\#FF3600\]:focus {
  border-color: #FF3600;
}

/* Hover states */
.hover\:bg-gray-100:hover {
  background-color: #f3f4f6;
}

.hover\:bg-gray-200:hover {
  background-color: #e5e7eb;
}

.hover\:bg-gray-300:hover {
  background-color: #d1d5db;
}

.hover\:text-\[\#FF3600\]:hover {
  color: #FF3600;
}

.hover\:text-\[\#e63100\]:hover {
  color: #e63100;
}

.hover\:border-\[\#FF3600\]:hover {
  border-color: #FF3600;
}

.hover\:shadow-md:hover {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Dark mode hover states */
.dark .hover\:bg-gray-600:hover {
  background-color: #4b5563;
}

.dark .hover\:bg-gray-700:hover {
  background-color: #374151;
}

/* Responsive utilities */
@media (min-width: 640px) {
  .sm\:px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
  }
  
  .sm\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .md\:ml-6 {
    margin-left: 1.5rem;
  }
  
  .md\:flex {
    display: flex;
  }
  
  .md\:hidden {
    display: none;
  }
  
  .md\:items-center {
    align-items: center;
  }
  
  .md\:space-x-1 > * + * {
    margin-left: 0.25rem;
  }
}

@media (min-width: 1024px) {
  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}