.kaisei {
    font-family: 'Kaisei HarunoUmi', serif;
}

nav.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
}

li.page {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 3px;
}

li.page.current{
    background: #386db4;
    border-radius: 1000px;
}

li.page.current a {
    color: white;
}

:root {
    --star-size: 23px;
    --star-color: #64748b;
    --star-background: #f59e0b;
}

.Stars {
    --percent: calc(var(--rating) / 5 * 100%);
    display: inline-block;
    font-size: var(--star-size);
    line-height: 1;
}

.Stars::before {
    content: "★★★★★";
    letter-spacing: -1.5px;
    background: linear-gradient(90deg, var(--star-background) var(--percent), var(--star-color) var(--percent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.tbl-userposts {
    width: 100%;
}

.tbl-userposts table {
    width: 100%;
}

.tbl-userposts table tr th,
.tbl-userposts table tr td {
    border: solid 1px #ccc;
    text-align: center;
    padding: 5px;
}

.tbl-userposts table .detail-btn {
    background: #274c7d;
    border-radius: 5px;
    padding: 5px 10px;
    width: max-content;
    margin: auto;
}

.admin-btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
}

input.admin-check-btn {
    background: #ccc;
    padding: 8px 30px;
    border-radius: 5px;
    letter-spacing: 3px;
}

input.allow-btn {
    background-color: green;
    color: white;
}

input.forbidden-btn {
    background-color: red;
    color: white;
}