.vendor-selector {
    margin: 10px 0;
}

.vendor-current {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
}

.vendor-current:hover {
    border-color: #3b82f6;
}

.vendor-name {
    display: block;
    font-weight: bold;
    font-size: 16px;
}

.vendor-address {
    display: block;
    font-size: 14px;
    color: #6b7280;
}

/* Modal Styles */
.vendor-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.vendor-modal-content {
    background: white;
    border-radius: 16px;
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.vendor-modal-header {
    display: flex;
    justify-content: between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #e5e7eb;
}

.vendor-modal-header h3 {
    margin: 0;
    flex: 1;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
}

.vendor-search {
    padding: 20px;
    display: flex;
    gap: 10px;
}

.vendor-search input {
    flex: 1;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
}

.vendor-search select {
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
}

.vendor-list {
    flex: 1;
    overflow-y: auto;
    padding: 0 20px 20px;
}

.vendor-item {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.vendor-item:hover {
    border-color: #3b82f6;
    background: #f8fafc;
}

.vendor-item.selected {
    border-color: #3b82f6;
    background: #eff6ff;
}

.vendor-info h4 {
    margin: 0 0 8px 0;
    color: #1f2937;
}

.vendor-location {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 14px;
}

.district {
    color: #3b82f6;
    font-weight: 500;
}

.plz {
    color: #6b7280;
}

.vendor-address {
    color: #6b7280;
    margin: 0 0 8px 0;
    font-size: 14px;
}

.vendor-description {
    color: #6b7280;
    font-size: 14px;
    margin: 0;
    font-style: italic;
}

.vendor-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.vendor-rating {
    color: #f59e0b;
    font-weight: 500;
}

.vendor-pricing {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: #6b7280;
}

/* Filter options */
#vendor-filter-options {
    padding: 0 20px 16px;
}

#vendor-filter-options select {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 8px;
    background: white;
}
