/* کارخانه‌های سازنده */
.makers-header {
    display: flex;
    align-items: center;
    gap: 10px;
}

.makers-header h1 {
    font-size: 18px;
    margin: 0;
}

.makers-header-actions {
    margin-right: auto;
    display: flex;
    gap: 8px;
}

.makers-table-card table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    font-size: 13px;
}

.makers-table-card thead th {
    position: sticky;
    top: 0;
    background: var(--card-bg);
    z-index: 1;
    font-weight: 800;
    font-size: 13px;
    color: var(--text-main);
}

.makers-table-card th,
.makers-table-card td {
    padding: 12px 12px;
    border-bottom: 1px solid var(--border-soft);
    text-align: right;
}

.makers-table-card thead th:first-child {
    border-top-right-radius: var(--radius-lg);
}

.makers-table-card thead th:last-child {
    border-top-left-radius: var(--radius-lg);
}
