.card {
    width: auto;
    max-width: 700px;
    /* border: 3px solid #333;  */
    border-radius: 20px;
    padding: 20px;
    margin: 0 auto 20px;
    background-color: #222;
    /* Dark background color */
    color: #fff;
    /* Light text color */
}

.time {
    font-size: 15px;
    color: #aaaaaa;
}

.userinfo {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    align-content: center;
    justify-content: center;
    flex-direction: column;
}

.message {
    margin-top: 5px;
    word-wrap: break-word;
    font-size: 20px;
}

.buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    text-align: right;
    font-size: 18px;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

.button {
    margin-left: 5px;
    padding: 5px 10px;
    background-color: #444;
    /* Dark button background color */
    white-space: nowrap;
    display: inline-block;
    margin-block: 5px;
    color: #fff;
    text-decoration: none;
    border-radius: 20px;
    border: none
}

.pagination {
    margin-top: 20px;
    text-align: center;
}

.pagination a {
    display: inline-block;
    margin: 0 5px;
    padding: 5px 10px;
    background-color: #555;
    /* Dark pagination background color */
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
}

.pagination .active {
    background-color: #333;
    /* Dark active pagination background color */
}

.pagination-button {
    margin: 0 5px;
    padding: 5px 10px;
    background-color: #555;
    /* Dark pagination button background color */
    color: #fff;
    text-decoration: none;
    border-radius: 3px;
    cursor: pointer;
}

.pagination-button[disabled] {
    background-color: #777;
    /* Dark disabled pagination button background color */
    cursor: not-allowed;
}

.pagination-button.active {
    background-color: #44b702;
    color: #fff;
}

#pagination {
    display: flex;
    justify-content: center;
    margin-top: 20px;
    margin-bottom: 80px;
    font-size: 20px;
}

/* 新增的表情样式 */
.emoji {
    display: inline-block;
    width: 35px;
    height: 35px;
    background-size: cover;
    background-repeat: no-repeat;
    margin-right: 3px;
}

.count {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    padding: 10px;
    /* margin-top: 100px; */
}

.z {
    position: relative;
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #888;
    justify-content: flex-end;
    margin-top: 10px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: none;
    z-index: 99;
}

.loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10000;
    display: none;
}

/* 加载动画样式，可以根据需求自定义 */
/* .loader:before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    margin-left: -20px;
    border-radius: 50%;
    border: 2px solid #f3f3f3;
    border-top-color: #3498db;
    animation: spin 1s linear infinite;
} */

@keyframes spin {
    0% {
        transform: rotate(0);
    }

    100% {
        transform: rotate(360deg);
    }
}

body {
    background-color: rgb(16, 16, 16);
    /* Black background color */
    color: #fff;
    /* Light text color */
    /* background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed; */
}

.search {
    height: 30px;
    border-radius: 18px;
    outline: none;
    border: 1px solid #ccc;
    padding-left: 20px;
}

.kz {
    display: flex;
    align-content: stretch;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;;
    gap: 20px
}