:root {
    --color-ink: #332f2a;
    --color-muted: #6c6861;
    --color-surface: #ffffff;
    --color-background: #f6f7f2;
    --color-brand-accent: #8abe38;
    --color-brand: #587a20;
    --color-brand-dark: #466516;
    --color-topbar: #ffffff;
    --color-border: #dfe2d8;
    --color-danger: #b42318;
    --color-success: #4f711b;
    --shadow-card: 0 18px 45px rgba(48, 43, 38, 0.1);
    --radius-large: 24px;
    --radius-medium: 14px;
    --content-width: 1180px;
    color-scheme: light;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

.is-hidden {
    display: none !important;
}

body {
    min-width: 320px;
    min-height: 100vh;
    margin: 0;
    color: var(--color-ink);
    background:
        radial-gradient(circle at 10% 10%, rgba(138, 190, 56, 0.12), transparent 28rem),
        var(--color-background);
    line-height: 1.5;
}

button,
input,
textarea {
    font: inherit;
}

a {
    color: var(--color-brand-dark);
}

.topbar {
    position: relative;
    overflow: hidden;
    color: var(--color-ink);
    background-color: var(--color-topbar);
    background-image: url("/img/cabecalho-folhagens.png");
    background-position: center top;
    background-size: cover;
    background-repeat: no-repeat;
    border-bottom: 4px solid var(--color-brand-accent);
    box-shadow: 0 6px 22px rgba(48, 43, 38, 0.1);
}

.topbar__content {
    position: relative;
    z-index: 1;
    width: min(calc(100% - 32px), var(--content-width));
    min-height: 104px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (min-width: 900px) {
    .topbar {
        background-image: none;
    }

    .topbar::before,
    .topbar::after {
        position: absolute;
        top: 0;
        bottom: 0;
        width: clamp(300px, 28vw, 520px);
        content: "";
        pointer-events: none;
        background-image: url("/img/cabecalho-folhagens.png");
        background-repeat: no-repeat;
        background-size: auto 480px;
    }

    .topbar::before {
        left: 0;
        background-position: left -56px;
    }

    .topbar::after {
        right: 0;
        background-position: right -56px;
    }
}

.brand {
    display: inline-flex;
    align-items: center;
    padding: 4px 8px;
    color: inherit;
    text-decoration: none;
}

.brand__logo {
    display: block;
    width: auto;
    width: min(240px, 72vw);
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.brand__placeholder {
    display: grid;
    min-width: 158px;
    min-height: 48px;
    padding: 8px 18px;
    place-items: center;
    border: 1px dashed #8d8981;
    border-radius: 10px;
    color: var(--color-muted);
    font-size: 0.75rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.main-content {
    width: min(calc(100% - 32px), var(--content-width));
    min-height: calc(100vh - 108px);
    margin: 0 auto;
    padding: 56px 0 72px;
}

.alerts {
    width: min(100%, 720px);
    margin: 0 auto 24px;
}

.alert {
    padding: 16px 18px;
    border: 1px solid #bfd59a;
    border-radius: var(--radius-medium);
    color: var(--color-success);
    background: #f1f7e7;
    font-weight: 700;
}

.form-layout {
    width: min(100%, 760px);
    margin: 0 auto;
}

.intro {
    margin-bottom: 28px;
    text-align: center;
}

.eyebrow {
    margin: 0 0 8px;
    color: var(--color-brand-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

h1,
h2,
p {
    overflow-wrap: anywhere;
}

h1 {
    margin: 0;
    font-size: clamp(2rem, 6vw, 3.4rem);
    letter-spacing: -0.045em;
    line-height: 1.02;
}

.intro__text {
    max-width: 620px;
    margin: 18px auto 0;
    color: var(--color-muted);
    font-size: 1.05rem;
}

.card,
.table-card {
    border: 1px solid rgba(219, 228, 223, 0.9);
    border-radius: var(--radius-large);
    background: var(--color-surface);
    box-shadow: var(--shadow-card);
}

.prayer-form {
    padding: clamp(24px, 5vw, 42px);
}

.rate-limit-card {
    padding: clamp(28px, 6vw, 48px);
    text-align: center;
}

.rate-limit-card h1 {
    margin: 8px 0 12px;
}

.rate-limit-card > p:not(.eyebrow) {
    margin: 0;
    color: var(--color-muted);
}

.rate-limit-card .button {
    width: auto;
}

.field + .field {
    margin-top: 24px;
}

.choice-field {
    padding: 0;
    border: 0;
}

.choice-field legend {
    margin-bottom: 10px;
    padding: 0;
    font-size: 0.95rem;
    font-weight: 750;
}

.choice-field legend span {
    color: var(--color-danger);
}

.radio-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.radio-option {
    display: flex !important;
    min-height: 50px;
    margin: 0 !important;
    padding: 12px 14px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 1px solid #becbc5;
    border-radius: 12px;
    cursor: pointer;
    background: #ffffff;
}

.radio-option:has(input:checked) {
    border-color: var(--color-brand);
    background: #f1f7e7;
    box-shadow: 0 0 0 3px rgba(88, 122, 32, 0.12);
}

.choice-field .radio-option input {
    flex: 0 0 auto;
    width: 19px;
    height: 19px;
    margin: 0;
    padding: 0;
    accent-color: var(--color-brand);
    box-shadow: none;
}

.choice-field .radio-option span {
    color: var(--color-ink);
    line-height: 1;
}

.radio-option input:focus-visible {
    outline: 3px solid #f6c453;
    outline-offset: 3px;
}

.field label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 750;
}

.field label span {
    color: var(--color-danger);
}

.field input,
.field textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #becbc5;
    border-radius: 12px;
    outline: none;
    color: var(--color-ink);
    background: #ffffff;
    transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    border-color: var(--color-brand);
    box-shadow: 0 0 0 4px rgba(88, 122, 32, 0.16);
}

.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
    border-color: var(--color-danger);
}

.field__hint,
.field__error {
    margin: 7px 2px 0;
    font-size: 0.84rem;
}

.field__hint {
    color: var(--color-muted);
}

.field__error {
    color: var(--color-danger);
    font-weight: 700;
}

.checkbox-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
}

.checkbox-option input {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
    margin: 1px 0 0;
    padding: 0;
    border: 1px solid #8fa39a;
    border-radius: 5px;
    accent-color: var(--color-brand);
    box-shadow: none;
}

.checkbox-option label {
    margin: 0;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 650;
}

.checkbox-option input:focus-visible {
    outline: 3px solid #f6c453;
    outline-offset: 3px;
}

.field input:disabled {
    cursor: not-allowed;
    color: var(--color-muted);
    background: #edf1ef;
}

.button {
    min-height: 52px;
    border: 0;
    border-radius: 13px;
    cursor: pointer;
    font-weight: 800;
    transition: background-color 160ms ease, transform 160ms ease;
}

.button--primary {
    width: 100%;
    margin-top: 30px;
    padding: 13px 20px;
    color: #ffffff;
    background: var(--color-brand);
    box-shadow: 0 9px 22px rgba(88, 122, 32, 0.24);
}

.button--primary:hover {
    background: var(--color-brand-dark);
}

.button--primary:active {
    transform: translateY(1px);
}

.button:focus-visible,
a:focus-visible {
    outline: 3px solid #f6c453;
    outline-offset: 3px;
}

.privacy-note {
    margin: 14px 0 0;
    color: var(--color-muted);
    font-size: 0.8rem;
    text-align: center;
}

.validation-modal {
    width: min(calc(100% - 32px), 440px);
    padding: 0;
    border: 0;
    border-radius: 20px;
    color: var(--color-ink);
    background: var(--color-surface);
    box-shadow: 0 24px 70px rgba(48, 43, 38, 0.3);
}

.validation-modal::backdrop {
    background: rgba(32, 29, 26, 0.64);
    backdrop-filter: blur(3px);
}

.validation-modal__content {
    padding: 30px;
    text-align: center;
}

.validation-modal__icon {
    display: grid;
    width: 46px;
    height: 46px;
    margin: 0 auto 16px;
    place-items: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--color-brand);
    font-size: 1.35rem;
    font-weight: 850;
}

.validation-modal__icon--success {
    font-size: 1.25rem;
}

.admin-login-modal .validation-modal__icon {
    font-size: 0.72rem;
    letter-spacing: 0.06em;
}

.admin-login-modal__field {
    margin-top: 22px;
    text-align: left;
}

.admin-login-modal__back {
    display: block;
    margin-top: 16px;
    color: var(--color-muted);
    font-size: 0.86rem;
    font-weight: 700;
    text-align: center;
}

.validation-modal h2 {
    margin: 0;
    font-size: 1.45rem;
    line-height: 1.2;
}

.validation-modal p {
    margin: 12px 0 0;
    color: var(--color-muted);
}

.validation-modal__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    text-decoration: none;
}

.management__heading {
    margin-bottom: 26px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.management__heading h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

.management__subtitle {
    margin: 10px 0 0;
    color: var(--color-muted);
}

.management__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.request-id-column,
.request-id {
    width: 8%;
    white-space: nowrap;
}

.request-id {
    color: var(--color-brand-dark);
    font-size: 0.88rem;
    font-weight: 850;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.025em;
}

.comments-column,
.comments-cell {
    width: 6%;
    padding-right: 8px;
    padding-left: 8px;
    text-align: center;
}

.share-column,
.share-cell {
    width: 6%;
    padding-right: 12px;
    padding-left: 8px;
    text-align: center;
}

.whatsapp-share-button {
    display: inline-grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    box-shadow: 0 5px 14px rgba(18, 140, 72, 0.22);
    transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.whatsapp-share-button:hover {
    background: #1eae54;
    box-shadow: 0 7px 18px rgba(18, 140, 72, 0.3);
    transform: translateY(-1px);
}

.whatsapp-share-button:focus-visible {
    outline: 3px solid #f6c453;
    outline-offset: 3px;
}

.whatsapp-share-button img {
    display: block;
    width: 22px;
    height: 22px;
}

.comment-button {
    position: relative;
    display: inline-grid;
    width: 38px;
    height: 38px;
    padding: 0;
    place-items: center;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
    color: #8d958f;
    background: #edf0ed;
}

.comment-button:hover {
    color: #68716b;
    background: #e3e7e3;
}

.comment-button--active {
    color: var(--color-brand);
    background: #eef5e4;
}

.comment-button--active:hover {
    color: var(--color-brand-dark);
    background: #e5efd6;
}

.comment-button:focus-visible {
    outline: 3px solid #f6c453;
    outline-offset: 2px;
}

.comment-button__bubble {
    position: relative;
    display: block;
    width: 19px;
    height: 15px;
    border: 2px solid currentColor;
    border-radius: 6px;
}

.comment-button__bubble::after {
    position: absolute;
    bottom: -5px;
    left: 3px;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid currentColor;
    border-left: 2px solid currentColor;
    background: inherit;
    content: "";
    transform: skewY(-35deg);
}

.comment-button__count {
    position: absolute;
    top: -5px;
    right: -5px;
    display: grid;
    min-width: 19px;
    height: 19px;
    padding: 0 4px;
    place-items: center;
    border: 2px solid #ffffff;
    border-radius: 999px;
    color: #ffffff;
    background: #c7352b;
    font-size: 0.65rem;
    font-weight: 850;
    line-height: 1;
}

.button--secondary {
    min-height: 40px;
    padding: 8px 15px;
    border: 1px solid #c7cbc1;
    color: var(--color-ink);
    background: #ffffff;
}

.button--secondary:hover {
    border-color: var(--color-brand);
    color: var(--color-brand-dark);
}

.button--danger,
.button--danger:hover {
    color: #ffffff;
    background: #b42318;
}

.management--locked {
    pointer-events: none;
    user-select: none;
    opacity: 0.42;
    filter: blur(2px);
}

.locked-preview {
    display: grid;
    min-height: 260px;
    padding: 32px;
    place-items: center;
    color: var(--color-muted);
    text-align: center;
}

.comments-modal {
    width: min(calc(100% - 32px), 680px);
    max-height: min(90vh, 780px);
    padding: 0;
    border: 0;
    border-radius: 22px;
    color: var(--color-ink);
    background: var(--color-surface);
    box-shadow: 0 26px 80px rgba(48, 43, 38, 0.34);
}

.comments-modal::backdrop {
    background: rgba(32, 29, 26, 0.64);
    backdrop-filter: blur(3px);
}

.comments-modal__content {
    position: relative;
    display: flex;
    max-height: min(90vh, 780px);
    padding: 28px;
    flex-direction: column;
}

.comments-modal__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.comments-modal__header h2 {
    margin: 0;
    font-size: 1.65rem;
    line-height: 1.2;
}

.comments-modal__person {
    margin: 5px 0 0;
    color: var(--color-muted);
    font-weight: 700;
}

.comments-modal__notice,
.management-notice {
    padding: 11px 13px;
    border: 1px solid #c9daa8;
    border-radius: 11px;
    color: var(--color-brand-dark);
    background: #f3f8e9;
    font-size: 0.84rem;
    font-weight: 700;
}

.comments-modal__notice {
    margin: 18px 0 0;
}

.management-notice {
    margin: -8px 0 18px;
}

.modal-close-button {
    flex: 0 0 auto;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    cursor: pointer;
    color: var(--color-muted);
    background: #ffffff;
    font-size: 1.5rem;
    line-height: 1;
}

.modal-close-button:hover {
    color: var(--color-ink);
    background: #f2f3ef;
}

.comments-modal__error {
    margin: 14px 0 0;
}

.comments-list {
    min-height: 120px;
    margin: 22px 0;
    padding-right: 5px;
    overflow-y: auto;
}

.comments-list__empty {
    display: grid;
    min-height: 120px;
    margin: 0;
    place-items: center;
    border: 1px dashed #cdd3ca;
    border-radius: 14px;
    color: var(--color-muted);
    background: #fafbf7;
    text-align: center;
}

.comment-item {
    padding: 15px 16px;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    background: #fafbf7;
    cursor: context-menu;
}

.comment-item:focus-visible {
    border-color: var(--color-brand);
    outline: 3px solid rgba(88, 122, 32, 0.2);
    outline-offset: 2px;
}

.comment-item + .comment-item {
    margin-top: 10px;
}

.comment-item__text {
    margin: 0;
    white-space: pre-wrap;
}

.comment-item__footer {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-muted);
    font-size: 0.76rem;
}

.comment-form {
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
}

.comment-form label {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 0.92rem;
    font-weight: 750;
}

.comment-form textarea {
    width: 100%;
    min-height: 108px;
    padding: 13px 14px;
    border: 1px solid #becbc5;
    border-radius: 12px;
    outline: none;
    color: var(--color-ink);
    background: #ffffff;
    font: inherit;
    resize: vertical;
}

.comment-form textarea:focus {
    border-color: var(--color-brand);
    box-shadow: 0 0 0 4px rgba(88, 122, 32, 0.16);
}

.comment-form__actions,
.confirmation-actions {
    margin-top: 14px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.comment-form__actions .button,
.confirmation-actions .button {
    width: auto;
    margin-top: 0;
    padding: 10px 16px;
}

.comment-context-menu {
    position: fixed;
    z-index: 20;
    min-width: 150px;
    padding: 6px;
    border: 1px solid var(--color-border);
    border-radius: 11px;
    background: #ffffff;
    box-shadow: 0 14px 38px rgba(48, 43, 38, 0.22);
}

.comment-context-menu[hidden] {
    display: none;
}

.comment-context-menu button {
    width: 100%;
    padding: 9px 11px;
    border: 0;
    border-radius: 7px;
    cursor: pointer;
    color: var(--color-ink);
    background: transparent;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 700;
    text-align: left;
}

.comment-context-menu button:hover,
.comment-context-menu button:focus-visible {
    background: #f0f2eb;
    outline: none;
}

.comment-context-menu .comment-context-menu__danger {
    color: #a9251c;
}

.request-action-target {
    cursor: context-menu;
}

.request-action-target:focus-visible {
    outline: 3px solid #f6c453;
    outline-offset: -3px;
}

.prayer-edit-form {
    margin-top: 22px;
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
    overflow-y: auto;
}

.prayer-edit-modal .comments-modal__content {
    overflow: hidden;
}

.count-badge {
    flex: 0 0 auto;
    padding: 9px 14px;
    border: 1px solid #c4d89e;
    border-radius: 999px;
    color: var(--color-brand-dark);
    background: #f1f7e7;
    font-size: 0.85rem;
    font-weight: 800;
}

.table-card {
    overflow: hidden;
}

.table-search {
    padding: 20px 22px;
    border-bottom: 1px solid var(--color-border);
    background: #ffffff;
}

.table-search__label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.84rem;
    font-weight: 800;
}

.table-search__control {
    position: relative;
    flex: 1 1 420px;
}

.table-search__row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-search__control input {
    width: 100%;
    min-height: 46px;
    padding: 11px 42px 11px 44px;
    border: 1px solid #becbc5;
    border-radius: 12px;
    outline: none;
    color: var(--color-ink);
    background: #ffffff;
}

.table-search__control input:focus {
    border-color: var(--color-brand);
    box-shadow: 0 0 0 4px rgba(88, 122, 32, 0.16);
}

.table-search__control input::-webkit-search-cancel-button {
    cursor: pointer;
}

.table-search__icon {
    position: absolute;
    top: 50%;
    left: 16px;
    width: 15px;
    height: 15px;
    border: 2px solid var(--color-muted);
    border-radius: 50%;
    pointer-events: none;
    transform: translateY(-58%);
}

.table-search__icon::after {
    position: absolute;
    right: -6px;
    bottom: -4px;
    width: 7px;
    height: 2px;
    border-radius: 2px;
    background: var(--color-muted);
    content: "";
    transform: rotate(45deg);
    transform-origin: left center;
}

.table-search__status {
    margin: 8px 0 0;
    color: var(--color-muted);
    font-size: 0.8rem;
}

.table-search__button,
.table-search__clear {
    width: auto;
    min-height: 46px;
    margin: 0;
    padding: 11px 18px;
    text-decoration: none;
}

.table-pagination {
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
    background: #fafbf7;
}

.table-pagination p {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.84rem;
}

.table-pagination__buttons {
    display: flex;
    align-items: center;
    gap: 10px;
}

.table-pagination__buttons .button {
    width: auto;
    margin: 0;
    text-decoration: none;
}

.table-pagination__current {
    color: var(--color-muted);
    font-size: 0.84rem;
    font-weight: 750;
    white-space: nowrap;
}

.button.is-disabled {
    cursor: not-allowed;
    opacity: 0.48;
}

.table-search-empty {
    padding: 58px 24px;
    text-align: center;
}

.table-search-empty h2 {
    margin: 0 0 8px;
}

.table-search-empty p {
    margin: 0;
    color: var(--color-muted);
}

.table-scroll {
    overflow-x: auto;
}

table {
    width: 100%;
    min-width: 960px;
    border-collapse: collapse;
}

th,
td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
    vertical-align: top;
}

th {
    color: #4d5e59;
    background: #f0f2eb;
    font-size: 0.75rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

tbody tr:last-child td {
    border-bottom: 0;
}

tbody tr:hover {
    background: #fafbf7;
}

.person-name {
    width: 18%;
    font-weight: 750;
}

.phone-cell {
    width: 15%;
    white-space: nowrap;
}

.request-text {
    width: 30%;
    white-space: pre-wrap;
}

.date-cell {
    width: 17%;
    color: var(--color-muted);
    white-space: nowrap;
}

.muted-text {
    color: var(--color-muted);
    font-style: italic;
}

.empty-state {
    padding: 72px 24px;
    text-align: center;
}

.empty-state h2 {
    margin: 0 0 8px;
}

.empty-state p {
    margin: 0;
    color: var(--color-muted);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 640px) {
    .topbar__content {
        width: min(calc(100% - 24px), var(--content-width));
        min-height: 88px;
    }

    .brand__placeholder {
        min-width: 120px;
        min-height: 42px;
        padding: 6px 10px;
        font-size: 0.62rem;
    }

    .brand__logo {
        width: min(210px, 70vw);
        height: auto;
    }

    .main-content {
        width: min(calc(100% - 24px), var(--content-width));
        padding: 36px 0 52px;
    }

    .intro {
        text-align: left;
    }

    .intro__text {
        font-size: 0.98rem;
    }

    .prayer-form {
        border-radius: 18px;
    }

    .validation-modal__content {
        padding: 26px 22px;
    }

    .comments-modal__content {
        padding: 22px 18px;
    }

    .comment-form__actions,
    .confirmation-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .comment-form__actions .button,
    .confirmation-actions .button {
        width: 100%;
    }

    .field input,
    .field textarea {
        font-size: 16px;
    }

    .management__heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .management__actions {
        width: 100%;
        justify-content: space-between;
    }

    .table-search {
        padding: 18px 16px;
    }

    .table-search__row,
    .table-pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .table-search__control {
        flex-basis: auto;
    }

    .table-search__button,
    .table-search__clear {
        width: 100%;
        text-align: center;
    }

    .table-pagination {
        padding: 14px 16px;
    }

    .table-pagination__buttons {
        justify-content: space-between;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
