/* Custom styles for search suggestions - working with TailwindCSS */
.search-input-wrapper {
    position: relative;
}

.suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 8px;
}

.suggestions-dropdown.hidden {
    display: none;
}

.suggestion-item {
    padding: 12px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.suggestion-item:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.suggestion-item:first-child {
    border-radius: 12px 12px 0 0;
}

.suggestion-item:hover,
.suggestion-item.highlighted {
    background-color: #f8fafc;
}

.suggestion-item.highlighted {
    background-color: #dbeafe;
}

.suggestion-name {
    font-weight: 500;
    color: #374151;
}

.suggestion-capacity {
    font-size: 0.875rem;
    color: #3b82f6;
    font-weight: 600;
}

.no-suggestions {
    padding: 16px 20px;
    text-align: center;
    color: #6b7280;
    font-style: italic;
}

/* Custom animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Custom scrollbar for suggestions */
.suggestions-dropdown::-webkit-scrollbar {
    width: 6px;
}

.suggestions-dropdown::-webkit-scrollbar-track {
    background: #f3f4f6;
    border-radius: 3px;
}

.suggestions-dropdown::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.suggestions-dropdown::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

/* Smooth focus transitions */
input:focus,
select:focus {
    outline: none;
}

/* Print styles */
@media print {
    .sticky,
    .ad-banner,
    .sidebar-ad {
        display: none;
    }
}

/* Extra for container */
body {
  font-family: Arial, sans-serif;
  background: #f9fafb;
  padding: 30px;
}

.container {
  max-width: 600px;
  margin: auto;
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  margin-bottom: 20px;
}

.filters {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

select {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 1rem;
}

.result {
  margin-top: 20px;
  background: #f3f4f6;
  padding: 20px;
  border-radius: 12px;
}