#livechat-container{
    width: 100% !important;
}

.game-history {
    background: var(--secondary-bg);
    border-radius: 8px;
    padding: 1rem;
    max-width: 1300px;
    margin: 0 auto;
}
.history-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 0.75rem;
}

.history-title {
    font-weight: 600;
    color: var(--text-color);
}

.history-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.history-item {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 6px;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: slideIn 0.3s ease-out;
    width: 100%;
}

.history-player {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    width: 280px;
}

.history-player img {
    width: 32px;
    height: 32px;
    border-radius: 4px;
}

.history-game-type {
    width: 140px;
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.history-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    width: 180px;
    font-weight: 500;
}

.history-result.win {
    color: #4CAF50;
}

.history-result.lose {
    color: #FF3B30;
}

.history-details {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: var(--text-secondary);
    font-size: 14px;
    width: 380px;
}

.history-time {
    color: var(--text-secondary);
    font-size: 13px;
    width: 120px;
    text-align: right;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(5px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
} 