/* lottery-list.css - 彩种历史列表页专用样式（完整版） */
.page-header {
    background: var(--white);
    margin: 0 12px 16px;
    padding: 16px;
    border-radius: var(--radius);
    border-left: 4px solid var(--primary);
}
.page-header h1 {
    font-size: 18px;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.page-header p {
    font-size: 12px;
    color: var(--text-light);
}

.history-table {
    background: var(--white);
    margin: 0 12px 16px;
    border-radius: var(--radius);
    overflow-x: auto;
}
.history-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
    min-width: 500px;
}
.history-table th {
    background: var(--primary-light);
    padding: 10px 6px;
    text-align: center;
    font-weight: 600;
    color: var(--primary);
    border-bottom: 1px solid var(--border);
}
.history-table td {
    padding: 10px 6px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.history-table tr:hover {
    background: var(--primary-light);
}
.mini-ball {
    display: inline-block;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 600;
    margin: 2px;
}
.mini-ball.red {
    background: #f2dede;
    color: #d4380d;
    border: 1px solid #d4380d;
}
.mini-ball.blue {
    background: #d9edf7;
    color: #17a2b8;
    border: 1px solid #17a2b8;
}
.history-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}
.history-link:hover {
    text-decoration: underline;
}
.weekday {
    font-size: 11px;
    color: var(--text-lighter);
}

/* 移动端适配 */
@media (max-width: 768px) {
    .history-table th,
    .history-table td {
        padding: 8px 4px;
        font-size: 11px;
    }
    .mini-ball {
        width: 22px;
        height: 22px;
        line-height: 22px;
        font-size: 10px;
    }
}