.history-container {
    width: calc(100% - 40px);
    max-width: 960px;
    margin: 20px auto;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    padding: 20px;
}

.lottery-selector {
    margin-bottom: 20px;
}

.selector-tabs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.selector-tab {
    padding: 8px 16px;
    border: 1px solid #e8ecef;
    border-radius: 6px;
    background: white;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.selector-tab.active {
    background: #1890ff;
    color: white;
    border-color: #1890ff;
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.history-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 8px;
    transition: all 0.3s;
}

.history-item:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.period-info {
    margin-bottom: 10px;
}

.period-num {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    margin-right: 10px;
}

.draw-date {
    color: #999;
    font-size: 13px;
}

.number-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.ball {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.ball.red {
    background: #e54d42;
}

.ball.blue {
    background: #1890ff;
}

.ball.special {
    background: #f5a623;
}

.detail-link {
    color: #1890ff;
    text-decoration: none;
    font-size: 14px;
    padding: 6px 12px;
    border: 1px solid #1890ff;
    border-radius: 4px;
    transition: all 0.3s;
}

.detail-link:hover {
    background: #1890ff;
    color: white;
}

.load-more {
    width: 100%;
    padding: 12px;
    border: 1px solid #e8ecef;
    border-radius: 8px;
    background: white;
    color: #666;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.load-more:hover {
    background: #f8f9fa;
    border-color: #1890ff;
    color: #1890ff;
}

@media (max-width: 768px) {
    .history-container {
        width: calc(100% - 20px);
        padding: 15px;
        margin: 10px;
    }

    .ball {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .detail-link {
        padding: 4px 8px;
        font-size: 13px;
    }
    
    .history-item .number-row {
        gap: 6px;
        justify-content: flex-start;
    }
    
    .history-item .ball {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
    
    /* 快乐8专用样式 */
    .history-item[data-type="klb"] .number-row {
        display: grid;
        grid-template-columns: repeat(10, 1fr);
        gap: 4px;
    }
    
    .history-item[data-type="klb"] .ball {
        width: 24px;
        height: 24px;
        font-size: 11px;
    }
}
