
.establishment-search-container {
    position: relative;
}

.selected-establishment {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 2px solid #28a745;
    border-radius: 8px;
    background: #f8fff9;
    margin-bottom: 10px;
}



.establishments-list {
    max-height: 400px;
    overflow-y: auto;
}

.establishment-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: white;
}

.establishment-item:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.establishment-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.establishment-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #1a1640 0%, #2d2a5e 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.establishment-details {
    flex: 1;
}

.establishment-name {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
    display: block;
}

.establishment-meta {
    font-size: 14px;
    color: #64748b;
}

.establishment-sector {
    font-weight: 500;
    color: #ff6b35;
}

.establishment-select {
    color: #64748b;
    font-size: 16px;
    transition: color 0.3s ease;
}

.establishment-item:hover .establishment-select {
    color: #475569;
}

.no-results {
    text-align: center;
    padding: 20px;
}

.search-container {
    position: sticky;
    top: 0;
    background: white;
    z-index: 10;
    padding-bottom: 10px;
}

#searchResults {
    max-height: 400px;
    overflow-y: auto;
}
