/* Additional global styles can be added here */

/* Custom extra small breakpoint utilities */
@media (min-width: 475px) {
  .xs\:block {
    display: block;
  }
  
  .xs\:hidden {
    display: none;
  }
}

/* Mobile responsive utilities */
@media (max-width: 474px) {
  .xs\:block {
    display: none;
  }
  
  .xs\:hidden {
    display: block;
  }
}

/* Better mobile search experience */
.mobile-search-results {
  max-height: calc(100vh - 200px);
}

/* Touch-friendly tap targets */
@media (max-width: 768px) {
  .touch-target {
    min-height: 44px;
    min-width: 44px;
  }
}

/* Prevent horizontal scroll on mobile */
.mobile-container {
  max-width: 100vw;
  overflow-x: hidden;
}

/* Tab button styles */
.tab-button {
    border-color: transparent;
    color: #6b7280;
    transition: all 0.2s ease-in-out;
}

.tab-button:hover {
    color: #374151;
    border-color: #d1d5db;
}

.tab-button.active {
    color: #2563eb;
    border-color: #2563eb;
}

/* Alpine.js utility classes to replace inline styles */
.x-cloak {
    display: none !important;
}

.alpine-hidden {
    display: none;
}

[x-cloak] {
    display: none !important;
}
