/* Add Jeweler form (mirrors the Manufacturers add form) */

#jewelersNewForm {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.jewelersNewFormRow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px;
    align-items: start;
}

.jewelersNewFormGroup label {
    display: block;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 4px;
}

.jewelersNewFormGroup small {
    display: block;
    font-size: 11px;
    color: var(--gray-400);
    margin-top: 4px;
}


/* Jewelers Table */

.jewelersRowName,
.jewelersRowEmail,
.jewelersRowBagPrefix,
.jewelersRowBagCount {
    width: 100%;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 4px 6px;
    font-size: 13px;
    background: transparent;
}

.jewelersRowName:focus,
.jewelersRowEmail:focus,
.jewelersRowBagPrefix:focus,
.jewelersRowBagCount:focus {
    border-color: var(--gray-400);
    background: white;
    outline: none;
}

.jewelersRowActions {
    display: flex;
    gap: 6px;
    white-space: nowrap;
}

.jewelersRowArchive,
.jewelersRowUnarchive,
.jewelersRowDelete {
    width: auto;
    max-width: none;
    font-size: 12px;
    padding: 4px 10px;
}

.jewelersTableEmpty {
    text-align: center;
    padding: 40px;
    color: var(--gray-400);
}


/* Archived Row */

tr.archived {
    opacity: 0.5;
}
