.moderation-feed-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}

.moderation-feed-tab {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 10px 16px;
    border: 1px solid rgba(47, 195, 107, 0.38);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(3, 16, 9, 0.78);
    font-family: var(--title-font);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}

.moderation-feed-tab:hover,
.moderation-feed-tab:focus-visible,
.moderation-feed-tab.is-active {
    color: var(--white-color);
    border-color: rgba(159, 232, 112, 0.8);
    background: rgba(21, 91, 56, 0.74);
}

.wall-of-shame-page .ban-feed-header {
    gap: 14px;
    margin-bottom: 28px;
}

.wall-of-shame-page .ban-feed-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
}

.wall-of-shame-page .ban-feed-filters {
    display: grid;
    grid-template-columns: minmax(120px, 0.7fr) minmax(210px, 1.2fr) minmax(150px, 0.8fr) minmax(230px, 1.25fr) auto;
    align-items: end;
    gap: 8px 10px;
    width: 100%;
}

.ban-feed-filters__field {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 5px;
}

.ban-feed-filters__actions {
    display: flex;
    align-items: flex-end;
    gap: 8px;
    min-width: max-content;
}

.wall-of-shame-page .ban-feed-filters__label {
    margin: 0;
    font-size: 11px;
    line-height: 1;
}

.wall-of-shame-teaser.is-loading [data-moderation-feed-content] {
    opacity: 0.58;
    pointer-events: none;
}

.ban-feed-filters--mutes .ban-feed-filters__select {
    min-width: 0;
}

.wall-of-shame-page .ban-feed-filters__input {
    width: 100%;
    min-width: 0;
    height: 40px;
    border: 1px solid rgba(47, 195, 107, 0.5);
    border-radius: 6px;
    padding: 8px 12px;
    background-color: rgba(12, 35, 24, 0.96);
    color: var(--white-color);
    font-weight: 600;
}

.wall-of-shame-page .ban-feed-filters__input::placeholder {
    color: rgba(255, 255, 255, 0.48);
}

.wall-of-shame-page .ban-feed-filters__select {
    width: 100%;
    min-width: 0;
    height: 40px;
    border-radius: 6px;
    padding: 8px 12px;
    background-color: rgba(12, 35, 24, 0.96);
    color: var(--white-color);
    color-scheme: dark;
}

.wall-of-shame-page .ban-feed-filters__select:disabled {
    cursor: not-allowed;
    border-color: rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.38);
}

.wall-of-shame-page .ban-feed-filters__input:focus,
.wall-of-shame-page .ban-feed-filters__select:focus,
.wall-of-shame-page .ban-feed-filters__select:active {
    background-color: rgba(8, 31, 19, 0.98);
    color: var(--white-color);
    border-color: rgba(159, 232, 112, 0.78);
    box-shadow: 0 0 0 3px rgba(159, 232, 112, 0.14);
}

.ban-feed-filters__button,
.ban-feed-filters__reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    border-radius: 6px;
    padding: 8px 13px;
    font-family: var(--title-font);
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.ban-feed-filters__button {
    border: 1px solid rgba(159, 232, 112, 0.75);
    background: rgba(21, 91, 56, 0.9);
    color: var(--white-color);
}

.ban-feed-filters__button:hover,
.ban-feed-filters__button:focus-visible {
    border-color: rgba(159, 232, 112, 1);
    background: rgba(159, 232, 112, 0.95);
    color: #06140c;
}

.ban-feed-filters__reset {
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.74);
}

.ban-feed-filters__reset:hover,
.ban-feed-filters__reset:focus-visible {
    border-color: rgba(159, 232, 112, 0.58);
    background: rgba(159, 232, 112, 0.12);
    color: var(--white-color);
}

.wall-of-shame-page .ban-feed-filters__select option,
.wall-of-shame-page .ban-feed-filters__select optgroup {
    background-color: #07150d;
    color: var(--white-color);
}

.wall-of-shame-page .ban-feed-filters__select option:checked {
    background-color: #155b38;
    color: var(--white-color);
}

.mute-card {
    border-color: rgba(159, 232, 112, 0.28);
}

.moderation-type-pill {
    border: 1px solid rgba(159, 232, 112, 0.42);
    border-radius: 999px;
    padding: 4px 10px;
    color: rgba(255, 255, 255, 0.9);
    font-family: var(--title-font);
    font-weight: 700;
    text-transform: uppercase;
}

.moderation-type-pill--ban {
    border-color: rgba(255, 100, 100, 0.45);
    background: rgba(255, 100, 100, 0.12);
}

.moderation-type-pill--mute {
    border-color: rgba(159, 232, 112, 0.42);
    background: rgba(159, 232, 112, 0.12);
}

@media (max-width: 1199.98px) {
    .wall-of-shame-page .ban-feed-filters {
        grid-template-columns: minmax(120px, 0.8fr) minmax(220px, 1.4fr) minmax(150px, 0.9fr);
    }

    .ban-feed-filters__field--search {
        grid-column: span 2;
    }
}

@media (max-width: 767.98px) {
    .moderation-feed-tabs,
    .moderation-feed-tab {
        width: 100%;
    }

    .moderation-feed-tab {
        justify-content: center;
    }

    .wall-of-shame-page .ban-feed-filters {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .ban-feed-filters__field--type {
        grid-column: 1;
        grid-row: 1;
    }

    .ban-feed-filters__field--status {
        grid-column: 2;
        grid-row: 1;
    }

    .ban-feed-filters__field--server,
    .ban-feed-filters__field--search,
    .ban-feed-filters__actions {
        grid-column: 1 / -1;
    }

    .ban-feed-filters__button,
    .ban-feed-filters__reset {
        flex: 1 1 0;
    }
}

@media (max-width: 359.98px) {
    .wall-of-shame-page .ban-feed-filters {
        grid-template-columns: 1fr;
    }

    .ban-feed-filters__field--type,
    .ban-feed-filters__field--status {
        grid-column: auto;
        grid-row: auto;
    }

    .ban-feed-filters__field--search {
        grid-column: auto;
    }

    .ban-feed-filters__actions {
        flex-direction: column;
        align-items: stretch;
    }
}
