.mcsw-front-wrap {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Tahoma, Arial, sans-serif;
    direction: rtl;
    text-align: right;
}
.mcsw-front-title {
    margin-bottom: 10px;
}
.mcsw-front-filters {
    margin-bottom: 10px;
    background: #f5f7f9;
    padding: 10px 12px;
    border-radius: 6px;
}
.mcsw-filters-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-end;
}
.mcsw-filter-field {
    display: flex;
    flex-direction: column;
    min-width: 150px;
    flex: 1 1 150px;
}
.mcsw-front-table-wrap {
    overflow-x: auto;
}
.mcsw-front-table {
    width: 100%;
    border-collapse: collapse;
}
.mcsw-front-table thead th {
    background: #003d6b;
    color: #fff;
    padding: 6px 8px;
    white-space: nowrap;
}
.mcsw-front-table tbody td {
    border: 1px solid #e1e1e1;
    padding: 5px 6px;
    background-color: #f9fbfd;
}
.mcsw-front-table tbody tr:nth-child(even) td {
    background-color: #edf3f8;
}
@media (max-width: 768px) {
    .mcsw-filters-row {
        flex-direction: column;
        align-items: stretch;
    }
}
