.mc-container-4315144d {
    font-family: Arial, sans-serif;
    color: #333;
}

.mc-filter-section {
    padding-bottom: 20px;
}

.mc-filter-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 0;
}

.mc-checkbox-group {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.mc-checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 15px;
}

/* Secondary Filters */
.mc-secondary-filters {
    background-color: #f9f9fa;
    border: 1px solid #eaeaea;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 4px;
}

.mc-filter-subtitle {
    font-size: 16px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 20px;
}

.mc-filter-block {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eaeaea;
}

.mc-filter-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.mc-filter-block-title {
    font-size: 15px;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 5px;
}

.mc-filter-note {
    font-size: 13px;
    color: #666;
    margin-top: 0;
    margin-bottom: 15px;
}

.mc-checkbox-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

.mc-checkbox-grid.mc-col-4 {
    grid-template-columns: repeat(4, 1fr);
}

.mc-results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 15px;
}

.mc-results-title {
    font-size: 22px;
    font-weight: bold;
    margin: 0;
}

.mc-results-count-wrap {
    font-size: 16px;
    font-weight: normal;
    color: #666;
}

.mc-search-wrap {
    position: relative;
    width: 250px;
}

.mc-search-input {
    width: 100%;
    padding: 8px 35px 8px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.mc-search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
    pointer-events: none;
}

.mc-table-wrap table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.mc-table-wrap th, .mc-table-wrap td {
    padding: 12px 15px;
    border: 1px solid #eaeaea;
}

.mc-table-wrap th {
    background-color: #3a3f4e;
    color: #fff;
    font-weight: bold;
}

.mc-table-wrap tr:nth-child(even) {
    background-color: #f9f9f9;
}

.mc-table-wrap a {
    color: #0073aa;
    text-decoration: none;
}

.mc-table-wrap a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .mc-checkbox-grid, .mc-checkbox-grid.mc-col-4 {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .mc-checkbox-grid, .mc-checkbox-grid.mc-col-4 {
        grid-template-columns: 1fr;
    }
}