:root {
    color-scheme: light;
}

.period-label {
    display: inline-block;
    margin-left: 8px;
    padding: 4px 9px;
    border-radius: 20px;
    background: #e3f7ed;
    color: #13804c;
    font-size: 12px;
    font-weight: 700;
    text-transform: capitalize;
}

.month-filter {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.month-filter label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.month-filter input {
    width: 155px;
}

.month-filter .ghost {
    padding: 10px 12px;
}

.product-credit {
    color: var(--muted);
    text-align: center;
}

.product-credit strong {
    display: block;
    color: #287b5e;
    font-size: 11px;
    letter-spacing: .14em;
}

.product-credit span {
    display: block;
    margin-top: 4px;
    font-size: 10px;
}

.auth-credit {
    margin-top: 22px;
    padding-top: 17px;
    border-top: 1px solid var(--line);
}

.app-credit {
    margin: 28px auto 8px;
}

.title-actions {
    display: flex;
    align-items: center;
    gap: 9px;
}

.export-btn {
    color: #287b5e;
    border-color: #9fd6be;
}

.export-btn:hover {
    background: #eaf8f1;
}

.export-btn:disabled {
    cursor: not-allowed;
    opacity: .45;
}

@media (max-width: 850px) {
    .filters {
        flex-wrap: wrap;
    }

    .filters > #search {
        flex-basis: 100%;
    }

    .month-filter {
        flex: 1;
    }
}

@media (max-width: 560px) {
    .month-filter {
        width: 100%;
        margin-top: 10px;
    }

    .month-filter input {
        flex: 1;
        width: auto;
    }

    .period-label {
        display: table;
        margin: 7px 0 0;
    }

    .title-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 12px;
    }

    .title-row .title-actions .primary {
        width: auto;
        margin-top: 0;
    }

    .auth-credit {
        margin-top: 19px;
        padding-top: 15px;
    }

    .app-credit {
        margin-top: 24px;
    }
}
