.vendedores-config {
    max-width: 48rem !important;
    margin: 1rem auto;
    padding: 1rem;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-family: Arial, sans-serif;
}

.vendedores-config h3, .vendedores-config h4 {
    margin-bottom: 0.5rem;
    color: #333;
}

.vendedores-config form.vendor-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #555;
}

.vendedores-config input[type="text"],
.vendedores-config input[type="email"] {
    width: 100%;
    padding: 6px 8px;
    margin-top: 2px;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    box-sizing: border-box;
}

.vendedores-config input[type="submit"] {
    background-color: #0073aa;
    border: none;
    color: white;
    padding: 8px 14px;
    border-radius: 3px;
    cursor: pointer;
}

.vendedores-config input[type="submit"]:hover {
    background-color: #005177;
}

.vendor-list {
    list-style: none;
    padding-left: 0;
}

.vendor-list li {
    padding: 6px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.95rem;
}

.vendor-list form button {
    background: none;
    border: none;
    color: #d63638;
    cursor: pointer;
    font-size: 1.2rem;
    line-height: 1;
    padding: 0 6px;
}

.notice-success {
    background-color: #dff0d8;
    border: 1px solid #d0e9c6;
    color: #3c763d;
    padding: 8px 12px;
    margin-bottom: 1rem;
    border-radius: 3px;
}

.notice-error {
    background-color: #f2dede;
    border: 1px solid #ebcccc;
    color: #a94442;
    padding: 8px 12px;
    margin-bottom: 1rem;
    border-radius: 3px;
}