/* 创建一个容器并设置阴影效果 */
.content {
    padding: 10px;
    
    /* border: 1px solid #000000; */
}

h1 {
    margin: 30px 0px;
}

.transaction-item {
    margin-bottom: 30px;
}

.transaction-card {
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 10px;
}
.transaction-header {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}
.transaction-body p {
    margin: 5px 0;
    font-size: 14px;
}

.status {
    font-weight: bold;
    padding: 2px 8px;
    border-radius: 5px;
}

.status-complete {
    color: #ffffff;
    background-color: #00c75a; /* 绿色 */
}

.status-pending {
    color: #ffffff;
    background-color: #f5a623; /* 橙色 */
}

.status-cancelled {
    color: #ffffff;
    background-color: #e74c3c; /* 红色 */
}

.no-data {
    text-align: center;
    padding: 20px;
    font-size: 16px;
    color: #888;
}

.paginationContainer {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 80px; /* 下边距 */
}

.paginationContainer button {
    margin: 0 5px;
}

.round-button {
    width: 30px; /* 设置按钮的宽度，确保它是正圆形 */
    height: 30px; /* 设置按钮的高度，确保它是正圆形 */
    border-radius: 50%; /* 将按钮的边框半径设置为50%以创建圆形按钮 */
    background-color: #ffffff; /* 替换为你想要的按钮颜色 */
    color: rgb(0, 0, 0); /* 按钮上的文本颜色 */
    padding: 10px; /* 按钮内边距，你可以根据需要调整 */
    cursor: pointer;
    border: 1px solid #aaaaaa; /* 边框颜色，替换为你想要的颜色 */
    margin: 0 2px; /* 可选：设置按钮之间的间距 */
    display: flex;
    justify-content: center; /* 水平居中 */
    align-items: center; /* 垂直居中 */
}
.round-button:hover {
    background-color: #eceaea; /* 打开时的背景颜色，替换为你想要的颜色 */
}