/* Public Styles */
.vendor-selection-container {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.vendor-selection-tabs {
    margin-top: 20px;
}

.nav-tabs {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid #ddd;
}

.nav-tabs li {
    margin-right: 5px;
}

.nav-tabs li a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #ddd;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
}

.nav-tabs li.active a {
    background-color: #fff;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
}

.tab-content {
    padding: 20px;
    border: 1px solid #ddd;
    border-top: none;
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.vs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.vs-table th,
.vs-table td {
    padding: 10px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.vs-table th {
    background-color: #f5f5f5;
    font-weight: bold;
}

.form-field {
    margin-bottom: 15px;
}

.form-field label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="number"],
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-actions {
    margin-top: 20px;
}

.form-actions .button {
    margin-right: 10px;
}
