/* 历史页面样式 */
.history-lottery-numbers {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 20px 0;
}

.history-lottery-ball {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #e74c3c;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: all 0.2s ease-in-out;
}

.history-lottery-ball:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.history-lottery-ball.special {
    background-color: #3498db;
}

.history-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    border-radius: 8px;
}

.history-table th {
    background: #f1f1f1;
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 2px solid #ddd;
}

.history-table td {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
}

.history-table tr:last-child td {
    border-bottom: none;
}

.history-table tr:hover td {
    background-color: #f9f9f9;
}

.history-page {
    padding: 20px;
    margin: 0 auto;
}

.page-title {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
    padding-bottom: 10px;
    border-bottom: 2px solid #2271b1;
    display: inline-block;
}

/* 返回按钮 */
.return-btn {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: #6c757d;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
}

.return-btn:hover {
    background: #5a6268;
}

.return-btn svg {
    width: 16px;
    height: 16px;
    margin-right: 8px;
}

.lottery-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.lottery-main-title {
    font-size: 24px;
    margin: 0;
}

.lottery-header .page-title {
    margin-bottom: 0;
    border-bottom: none;
    padding-bottom: 0;
}

/* 响应式样式 */
@media screen and (max-width: 782px) {
    .history-lottery-ball {
        width: 36px;
        height: 36px;
        font-size: 14px;
    }
    
    .history-table th,
    .history-table td {
        padding: 8px;
        font-size: 14px;
    }
}

/* 历史表格容器 */
.history-table-container {
    overflow-x: auto;
    margin-bottom: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
} 