body {
    font-family: 'ZCOOL XiaoWei', sans-serif;
}

/* 二维码放大模态框 */
.qr-modal {
    background-color: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.qr-modal-content {
    max-width: 90vw;
    max-height: 90vh;
}

/* 可爱动漫风格的背景 */
.background-image {
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    filter: blur(3px) brightness(0.9); /* 轻微模糊和调暗，突出主体内容 */
}

/* 桌面端背景 */
@media (min-width: 768px) {
    .background-image {
        background-image: url('https://img.lansq.xyz/file/covers/23Rb3yGe.jpg');
    }
}

/* 手机端背景 */
@media (max-width: 767px) {
    .background-image {
        background-image: url('https://img.lansq.xyz/file/D7senj8B.png');
    }
}

.main-container {
    /* 毛玻璃效果 */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 自定义滚动条样式 */
#history-list::-webkit-scrollbar {
    width: 6px;
}

#history-list::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

#history-list::-webkit-scrollbar-thumb {
    background: #c084fc; /* 紫色 */
    border-radius: 10px;
}

#history-list::-webkit-scrollbar-thumb:hover {
    background: #a855f7;
}

/* 历史记录项的样式 */
.history-item {
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.history-item:hover {
    background-color: #f3e8ff;
    transform: translateX(5px);
}

/* 座位选择器颜色状态 */
.seat-unselected {
    color: #10B981; /* 绿色 (Tailwind green-500) */
}

.seat-selected {
    color: #EF4444; /* 红色 (Tailwind red-500) */
}